/**
 * Main Stylesheet for XcotPage Theme
 * Matching in.zuko.in design
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ============================================
   Header Styles
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
    width: 100%;
}

.header-top {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo .site-title {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login,
.btn-signup,
.btn-dashboard {
    padding: 10px 22px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-login:hover,
.btn-signup:hover,
.btn-dashboard:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.btn-post-ad {
    padding: 10px 25px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-post-ad:hover {
    background: #c2185b;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(233, 30, 99, 0.3);
}

/* Header action icons — visible on mobile only */
.header-action-icon {
    display: none;
    flex-shrink: 0;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.header-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.menu-toggle:hover {
    background: #e5e7eb;
}

.menu-toggle:active {
    transform: scale(0.96);
}

.menu-toggle.active {
    background: #fdf2f7;
    color: #e91e63;
    box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.15);
}

.menu-toggle-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
}

.menu-toggle-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
}

.menu-toggle-bar:nth-child(1) {
    top: 0;
}

.menu-toggle-bar:nth-child(2) {
    top: 7px;
}

.menu-toggle-bar:nth-child(3) {
    top: 14px;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.header-search {
    width: 100%;
    padding: 15px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.search-dropdown {
    flex: 0 0 200px;
    padding: 10px 35px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23666' d='M5 7L2 4h6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.search-dropdown:hover {
    border-color: #999;
}

.search-dropdown:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

.search-dropdown option {
    padding: 10px;
    background: #fff;
    color: #333;
}

.search-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    background: #4a4a4a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 40px;
}

.search-submit-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-submit-btn:active {
    transform: translateY(0);
}

.search-icon {
    font-size: 16px;
    display: inline-block;
}

.search-text {
    letter-spacing: 0.5px;
}

.main-navigation {
    width: 100%;
    padding: 10px 0;
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 0;
}

.main-navigation .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.primary-menu a:hover {
    color: #e91e63;
}

/* ============================================
   Homepage Styles
   ============================================ */
.homepage-hero {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

.homepage-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.state-listing-section {
    margin: 25px 0 40px;
}

.state-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.state-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.state-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: none;
}

.state-card-header {
    background: #c0392b;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
}

.state-icon {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
}

.state-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    flex: 1;
    text-transform: capitalize;
}

.state-card-content {
    padding: 0;
    background: #fff;
}

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

.city-item {
    border-bottom: 1px solid #ececec;
    margin: 0;
}

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

.state-card .city-link {
    color: #c9651a;
    padding: 10px 16px;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    font-size: 14px;
    font-weight: 400;
    background: transparent;
    border: none;
    border-radius: 0;
}

.state-card .city-link:hover {
    background: #fafafa;
    color: #333;
    padding-left: 16px;
}

.homepage-welcome {
    margin: 30px 0 50px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.homepage-welcome .welcome-lead {
    font-size: 16px;
    margin-bottom: 12px;
}

.homepage-welcome p {
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .state-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .state-cards-grid {
        grid-template-columns: 1fr;
    }
}

.featured-cities-section {
    margin: 40px 0;
}

.featured-cities-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.city-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: #e91e63;
}

.city-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.city-card .count {
    color: #666;
    font-size: 14px;
}

/* ============================================
   Listing Card Styles
   ============================================ */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.listing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.listing-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.listing-content {
    padding: 20px;
}

.listing-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.listing-title a {
    color: #333;
}

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

.listing-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.listing-meta .icon {
    margin-right: 5px;
}

.listing-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.listing-price {
    font-size: 18px;
    font-weight: bold;
    color: #e91e63;
}

.listing-actions {
    display: flex;
    gap: 10px;
}

.btn-call,
.btn-whatsapp {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-call {
    background: #4CAF50;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-call:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* ============================================
   City Archive Page
   ============================================ */
.city-archive-header {
    background: #fff;
    padding: 30px 0;
    margin-bottom: 20px;
}

.page-title {
    font-size: 36px;
    color: #333;
    margin: 20px 0;
}

.city-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 10px;
}

.city-description h2,
.city-description h3 {
    color: #333;
    margin: 25px 0 15px;
    font-weight: 600;
}

.city-description h2 {
    font-size: 28px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e91e63;
}

.city-description h3 {
    font-size: 20px;
}

.city-description ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.city-description li {
    margin-bottom: 8px;
}

.city-description a {
    color: #e91e63;
    text-decoration: none;
}

.city-description a:hover {
    color: #c2185b;
    text-decoration: underline;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: #e91e63;
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: #999;
}

.age-verification-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.notice-content h4 {
    color: #856404;
    margin-bottom: 15px;
}

.notice-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.age-confirmation {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-top: 15px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-decline,
.btn-accept {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline {
    background: #dc3545;
    color: #fff;
}

.btn-accept {
    background: #28a745;
    color: #fff;
}

.btn-decline:hover,
.btn-accept:hover {
    opacity: 0.9;
}

.city-listings-section {
    background: #fff;
    padding: 30px 0;
    margin-bottom: 30px;
}

.city-listings-intro {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e91e63;
}

.city-listings-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

/* Horizontal listing list (Zuko-style) */
.listings-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.listing-card-horizontal {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin: 0;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.listing-card-horizontal:first-child {
    border-top: 1px solid #e8e8e8;
}

.listing-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.12);
    background: #fff;
}

.listing-card-horizontal-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 220px;
}

/* Gallery column */
.listing-h-gallery {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    background: #111;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

.listing-h-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.listing-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.listing-badge-vip {
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 50%, #ff8f00 100%);
    color: #3e2723;
    border: 1px solid #f9a825;
}

.listing-badge-featured {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    border: 1px solid #ad1457;
}

.listing-badge-premium {
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    color: #fff;
    border: 1px solid #4527a0;
}

.listing-h-gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.listing-h-no-image {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.listing-h-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.listing-h-slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.listing-h-slide.is-active {
    display: block;
}

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

.listing-h-slide img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.listing-h-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    width: 32px;
    height: 48px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: background 0.2s ease;
}

.listing-h-nav:hover {
    background: rgba(233, 30, 99, 0.85);
}

.listing-h-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.listing-h-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.listing-h-photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1.4;
}

/* Content column */
.listing-h-body {
    flex: 1;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-left: 1px solid #f0f0f0;
}

.listing-h-top {
    margin-bottom: 8px;
}

.listing-h-date {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.listing-h-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.35;
}

.listing-h-title a {
    color: #222;
    text-decoration: none;
}

.listing-h-title a:hover {
    color: #e91e63;
}

.listing-h-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
    flex: 1;
}

.listing-h-excerpt p {
    margin: 0;
}

.listing-h-tags {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.listing-h-tags strong {
    color: #e91e63;
    font-weight: 700;
}

.listing-h-tag-sep {
    margin: 0 6px;
    color: #ccc;
}

.listing-h-price {
    color: #e91e63;
    font-weight: 600;
}

.listing-h-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.listing-h-whatsapp {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

.listing-h-call {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
}

.listing-h-telegram {
    padding: 8px 16px;
    font-size: 13px;
    background: #0088cc;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.listing-h-telegram:hover {
    opacity: 0.9;
    color: #fff;
}

.listing-h-view {
    font-size: 13px;
    color: #e91e63;
    text-decoration: underline;
    margin-left: auto;
}

.listing-h-view:hover {
    color: #c2185b;
}

@media (max-width: 768px) {
    .listings-list-horizontal {
        gap: 16px;
    }

    .listing-card-horizontal-inner {
        flex-direction: column;
        min-height: auto;
    }

    .listing-h-gallery {
        flex: none;
        width: 100%;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .listing-h-body {
        border-left: none;
        border-top: 1px solid #f0f0f0;
    }

    .listing-h-slides,
    .listing-h-slide,
    .listing-h-slide img {
        min-height: 200px;
    }

    .listing-h-body {
        padding: 16px;
    }

    .listing-h-title {
        font-size: 16px;
    }

    .listing-h-view {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    .city-listings-subtitle {
        font-size: 18px;
    }
}

/* ============================================
   City Article Section
   ============================================ */
.city-article-section {
    background: #f9f9f9;
    padding: 50px 0;
    margin: 40px 0;
    border-top: 1px solid #eee;
}

.city-article-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #333;
}

.city-article-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e91e63;
}

.city-article-content h3 {
    font-size: 24px;
    color: #444;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.city-article-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.city-article-content p:first-of-type {
    margin-top: 0;
}

.city-article-content p:last-of-type {
    margin-bottom: 0;
}

.city-article-content a {
    color: #e91e63;
    text-decoration: underline;
    font-weight: 600;
}

.city-article-content a:hover {
    color: #c2185b;
}

.city-article-content b,
.city-article-content strong {
    font-weight: 700;
    color: #222;
}

/* SEO Keyword Links Styling */
.city-article-content strong a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.city-article-content strong a:hover {
    color: #c2185b;
    border-bottom-color: #c2185b;
    text-decoration: none;
}

.city-article-content strong a:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Ensure keywords are properly emphasized */
.city-article-content h2 strong a,
.city-article-content h3 strong a {
    color: #333;
    font-weight: 700;
}

.city-article-content h2 strong a:hover,
.city-article-content h3 strong a:hover {
    color: #e91e63;
}

/* ============================================
   Single Listing Page
   ============================================ */
body.single-listing .header-top .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

body.single-listing .header-search {
    padding: 12px 0;
}

article.single-listing {
    padding: 16px 0 48px;
}

.listing-profile-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    background: #fff;
    overflow: hidden;
}

.listing-profile-breadcrumbs {
    padding: 12px 20px 10px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.listing-profile-breadcrumbs .breadcrumbs {
    margin-bottom: 0;
    font-size: 13px;
}

.listing-profile-breadcrumbs .breadcrumbs .current {
    color: #333;
    font-weight: 600;
}

.listing-profile-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
}

.listing-profile-media {
    flex: 0 0 42%;
    max-width: 42%;
    background: #111;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
}

.listing-profile-gallery {
    position: relative;
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    align-self: stretch;
    border-radius: 0;
    min-height: 0;
    height: 100%;
}

.listing-profile-gallery .listing-h-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.listing-profile-gallery .listing-h-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: none;
}

.listing-profile-gallery .listing-h-slide.is-active {
    display: block;
}

.listing-profile-gallery .listing-h-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center top;
}

.listing-profile-gallery.listing-h-gallery-empty {
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-profile-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 320px;
    color: #999;
    font-size: 15px;
    text-align: center;
    padding: 24px;
}

.listing-profile-no-image-icon {
    font-size: 42px;
    line-height: 1;
    opacity: 0.45;
}

.listing-profile-body {
    flex: 1;
    min-width: 0;
    padding: 28px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-left: 1px solid #f0f0f0;
}

.listing-profile-date {
    display: block;
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 8px;
}

.listing-profile-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin: 0 0 14px;
}

.listing-profile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.listing-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 20px;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #e8e8e8;
}

.listing-chip-category {
    background: #fce4ec;
    color: #c2185b;
    border-color: #f8bbd0;
}

.listing-chip-city {
    background: #fff;
    color: #444;
}

.listing-chip-location {
    background: #fafafa;
    color: #666;
}

.listing-chip-price {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    border-color: #c2185b;
    font-size: 13px;
}

.listing-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.listing-profile-actions-top .listing-h-whatsapp {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
}

.listing-profile-actions-top .listing-h-call {
    padding: 10px 18px;
    font-size: 14px;
}

.listing-profile-actions-top .listing-h-telegram {
    padding: 10px 18px;
    font-size: 14px;
}

.listing-profile-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e91e63;
    display: inline-block;
}

.listing-profile-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.listing-profile-description p {
    margin: 0 0 14px;
}

.listing-profile-description p:last-child {
    margin-bottom: 0;
}

.listing-profile-contact {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px 20px;
}

.listing-profile-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.listing-contact-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    background: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.listing-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.listing-contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
}

.listing-contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    word-break: break-word;
}

.listing-contact-phone:hover {
    border-color: #4caf50;
}

.listing-contact-phone .listing-contact-value {
    color: #2e7d32;
}

.listing-contact-whatsapp:hover {
    border-color: #25d366;
}

.listing-contact-whatsapp .listing-contact-value {
    color: #128c7e;
}

.listing-contact-telegram:hover {
    border-color: #0088cc;
}

.listing-contact-telegram .listing-contact-value {
    color: #0088cc;
}

.listing-contact-email:hover {
    border-color: #e91e63;
}

.listing-contact-email .listing-contact-value {
    color: #c2185b;
}

.listing-profile-back {
    margin: 4px 0 0;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.listing-profile-back a {
    font-size: 14px;
    font-weight: 600;
    color: #e91e63;
    text-decoration: none;
}

.listing-profile-back a:hover {
    color: #c2185b;
    text-decoration: underline;
}

.related-listings {
    margin-top: 36px;
}

.related-listings-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e91e63;
}

.listing-mobile-cta {
    display: none;
}

@media (max-width: 992px) {
    .listing-profile-media {
        flex: 0 0 46%;
        max-width: 46%;
    }
}

@media (max-width: 768px) {
    body.single-listing .header-mobile-bar {
        padding: 8px 12px;
        gap: 8px;
        min-height: 56px;
    }

    body.single-listing .header-search {
        padding: 10px 0;
    }

    article.single-listing {
        padding: 12px 0 88px;
    }

    .listing-profile-breadcrumbs {
        padding: 10px 16px 8px;
    }

    .listing-profile-inner {
        flex-direction: column;
        min-height: 0;
    }

    .listing-profile-media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .listing-profile-gallery {
        flex: none;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        max-height: min(70vh, 520px);
    }

    .listing-profile-gallery.listing-h-gallery-empty {
        aspect-ratio: auto;
        min-height: 220px;
    }

    .listing-profile-no-image {
        min-height: 220px;
    }

    .listing-profile-body {
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 20px 18px;
        gap: 18px;
    }

    .listing-profile-title {
        font-size: 22px;
    }

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

    .listing-profile-actions-top .listing-h-whatsapp,
    .listing-profile-actions-top .listing-h-call,
    .listing-profile-actions-top .listing-h-telegram {
        flex: 1;
        text-align: center;
        min-width: calc(50% - 5px);
    }

    .listing-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        gap: 0;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    }

    .listing-mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        text-align: center;
        min-height: 52px;
    }

    .listing-mobile-cta-whatsapp {
        background: #25d366;
    }

    .listing-mobile-cta-call {
        background: #4caf50;
    }

    .listing-mobile-cta-btn:active {
        opacity: 0.9;
    }

    .related-listings-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .listing-profile-title {
        font-size: 20px;
    }

    .listing-chip {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ============================================
   Pagination
   ============================================ */
.pagination-wrapper {
    margin: 40px 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
}

.pagination .current {
    background: #e91e63;
    color: #fff;
    border-color: #e91e63;
}

.pagination a:hover {
    background: #f5f5f5;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 25px;
    margin-top: 80px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* When only description section is visible */
.footer-content.footer-single-section {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr;
}

.footer-content.footer-single-section .footer-about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.footer-section {
    min-width: 0;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #e91e63;
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.social-link:hover {
    color: #e91e63;
    padding-left: 5px;
}

.footer-custom {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #aaa;
    font-size: 13px;
}

.footer-bottom p {
    margin: 8px 0;
}

.rta-notice {
    color: #4CAF50;
    font-weight: 700;
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-content-top {
    margin-bottom: 50px;
}

.footer-tagline {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
    font-style: italic;
}

/* SEO City Directory */
.footer-city-directory {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
}

.footer-directory-header {
    margin-bottom: 28px;
}

.footer-directory-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.footer-directory-subtitle {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: 900px;
}

.footer-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.footer-state-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.footer-state-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: background 0.2s ease;
}

.footer-state-toggle:hover,
.footer-state-block.is-open .footer-state-toggle {
    background: rgba(233, 30, 99, 0.15);
}

.footer-state-name {
    font-weight: 600;
    flex: 1;
}

.footer-state-count {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
}

.footer-state-icon::before {
    content: '+';
    display: inline-block;
    width: 18px;
    text-align: center;
    font-size: 18px;
    color: #e91e63;
    line-height: 1;
}

.footer-state-block.is-open .footer-state-icon::before {
    content: '−';
}

.footer-city-list {
    list-style: none;
    margin: 0;
    padding: 0 12px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-city-list[hidden] {
    display: none !important;
}

.footer-city-list li a {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ddd;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.footer-city-list li a:hover {
    background: #e91e63;
    color: #fff;
}

.footer-city-count {
    color: #999;
    font-size: 11px;
}

/* States quick row */
.footer-states-quick,
.footer-nap,
.footer-sitemap-row {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mini-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-states-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-state-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.footer-state-pill:hover {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
}

/* Lengthy SEO content block */
.footer-seo-content {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.footer-seo-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 16px;
}

.footer-seo-content p:last-child {
    margin-bottom: 0;
}

.footer-seo-content a {
    color: #e91e63;
    text-decoration: underline;
}

.footer-seo-content strong {
    color: #fff;
}

/* NAP contact */
.footer-nap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nap-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-nap-label {
    font-weight: 600;
    color: #fff;
    margin-right: 6px;
}

.footer-nap-list a {
    color: #e91e63;
    text-decoration: none;
}

.footer-nap-list a:hover {
    text-decoration: underline;
}

/* Sitemap row */
.footer-sitemap-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-sitemap-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-sitemap-links a:hover {
    color: #e91e63;
}

/* Disclaimer */
.footer-disclaimer {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.8;
    color: #999;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-age-notice {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .footer-directory-title {
        font-size: 20px;
    }

    .footer-states-grid {
        grid-template-columns: 1fr;
    }

    .footer-seo-content {
        padding: 20px 16px;
    }

    .footer-sitemap-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-archive-header {
    background: #fff;
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.archive-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.archive-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.blog-archive-content {
    padding: 30px 0;
}

.blog-posts {
    margin-top: 30px;
}

/* Grid Layout */
.blog-layout-grid .blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-categories {
    margin-bottom: 15px;
}

.post-categories a {
    display: inline-block;
    padding: 5px 12px;
    background: #e91e63;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.post-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #e91e63;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.post-meta .icon {
    margin-right: 5px;
}

.post-meta a {
    color: #666;
    text-decoration: none;
}

.post-meta a:hover {
    color: #e91e63;
}

.post-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #e91e63;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #c2185b;
    color: #fff;
}

/* List Layout */
.blog-layout-list .blog-post-card {
    display: flex;
    margin-bottom: 30px;
}

.blog-layout-list .post-thumbnail {
    flex: 0 0 300px;
    height: 200px;
}

.blog-layout-list .post-content {
    flex: 1;
}

/* Masonry Layout */
.blog-layout-masonry .blog-posts {
    column-count: 3;
    column-gap: 30px;
}

.blog-layout-masonry .blog-post-card {
    break-inside: avoid;
    margin-bottom: 30px;
}

/* Single Post */
.single-post-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.single-post {
    padding: 40px 0;
}

.post-main {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .post-header {
    margin-bottom: 30px;
}

.single-post .post-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-post .post-meta {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.single-post .post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.single-post .post-content p {
    margin-bottom: 20px;
}

.single-post .post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #333;
}

.single-post .post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.post-tags a:hover {
    background: #e91e63;
    color: #fff;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-posts h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.related-thumbnail {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f5f5f5;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-card h3 {
    padding: 15px;
    font-size: 16px;
    margin: 0;
}

.related-post-card h3 a {
    color: #333;
    text-decoration: none;
}

.related-post-card h3 a:hover {
    color: #e91e63;
}

.related-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 12px;
    color: #666;
}

/* Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.comments-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.comment-content {
    line-height: 1.6;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-layout-grid .blog-posts,
    .blog-layout-masonry .blog-posts {
        grid-template-columns: 1fr;
        column-count: 1;
    }
    
    .blog-layout-list .blog-post-card {
        flex-direction: column;
    }
    
    .blog-layout-list .post-thumbnail {
        flex: 1;
        width: 100%;
    }
    
    .single-post .post-title {
        font-size: 28px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    /* App-like mobile header bar */
    .header-top {
        border-bottom: 1px solid #eee;
    }

    .header-mobile-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        min-height: 56px;
    }

    .logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo img,
    .logo .custom-logo {
        max-height: 40px;
        width: auto;
    }

    .logo .site-title {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-actions {
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .header-end {
        gap: 4px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    .site-header.is-menu-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header.is-menu-open .header-top {
        position: relative;
        z-index: 1003;
    }

    .main-navigation {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(320px, 88vw);
        z-index: 1002;
        padding: 0;
        margin: 0;
        border-top: none;
        border-left: 1px solid #eee;
        background: #fff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0.3s ease;
    }

    .site-header.is-menu-open .main-navigation {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .main-navigation .container {
        padding: calc(var(--header-top-height, 56px) + 8px) 0 24px;
        max-width: none;
        display: block;
        justify-content: flex-start;
    }

    .primary-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .primary-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .primary-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 500;
        color: #1f2937;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    }

    .primary-menu a:hover,
    .primary-menu a:focus {
        background: #fdf2f7;
        color: #e91e63;
        padding-left: 28px;
    }

    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a {
        color: #e91e63;
        background: #fdf2f7;
        box-shadow: inset 3px 0 0 #e91e63;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .header-action-icon {
        display: block;
        width: 22px;
        height: 22px;
    }

    .header-action-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .header-actions .btn-login,
    .header-actions .btn-signup,
    .header-actions .btn-dashboard,
    .header-actions .btn-post-ad {
        flex: none;
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        text-align: center;
        font-size: 0;
        line-height: 0;
    }

    .header-actions .btn-login,
    .header-actions .btn-signup,
    .header-actions .btn-dashboard {
        background: #f3f4f6;
        border: none;
        color: #374151;
    }

    .header-actions .btn-login:active,
    .header-actions .btn-signup:active,
    .header-actions .btn-dashboard:active {
        background: #e5e7eb;
        transform: scale(0.96);
    }

    .header-actions .btn-post-ad {
        background: #e91e63;
        color: #fff;
        box-shadow: 0 2px 8px rgba(233, 30, 99, 0.35);
    }

    .header-actions .btn-post-ad .header-action-icon {
        stroke: #fff;
    }

    .header-actions .btn-post-ad:active {
        background: #c2185b;
        transform: scale(0.96);
        box-shadow: 0 1px 4px rgba(233, 30, 99, 0.3);
    }

    .header-actions .btn-login:hover,
    .header-actions .btn-signup:hover,
    .header-actions .btn-dashboard:hover {
        background: #e5e7eb;
        border-color: transparent;
        transform: none;
    }

    .header-actions .btn-post-ad:hover {
        background: #d81b60;
        transform: none;
        box-shadow: 0 2px 10px rgba(233, 30, 99, 0.4);
    }

    .header-search {
        padding: 10px 0;
        background: #fafafa;
        border-bottom: 1px solid #eee;
    }

    .search-wrapper {
        flex-direction: row;
        gap: 8px;
        padding: 0 15px;
    }
    
    .search-form {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        align-items: stretch;
    }
    
    .search-dropdown {
        flex: 1 1 auto;
        min-width: 0;
        padding: 10px 35px 10px 12px;
        font-size: 14px;
        min-height: 42px;
    }
    
    .search-submit-btn {
        flex: 0 0 auto;
        padding: 10px 18px;
        font-size: 13px;
        min-height: 42px;
        white-space: nowrap;
    }
    
    .search-icon {
        font-size: 14px;
    }
    
    .search-text {
        font-size: 12px;
        letter-spacing: 0.3px;
    }
    
    .state-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .city-grid,
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .homepage-hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .state-card-header {
        padding: 12px 15px;
    }
    
    .state-name {
        font-size: 16px;
    }
    
    .city-link {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-mobile-bar {
        padding: 8px 10px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-actions .btn-login,
    .header-actions .btn-signup,
    .header-actions .btn-dashboard,
    .header-actions .btn-post-ad {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }
    
    .listing-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-call,
    .btn-whatsapp {
        width: 100%;
    }
    
    .search-wrapper {
        gap: 6px;
        padding: 0 10px;
    }
    
    .search-form {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
        align-items: stretch;
    }
    
    .search-dropdown {
        flex: 1 1 auto;
        min-width: 0;
        padding: 10px 30px 10px 10px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .search-submit-btn {
        flex: 0 0 auto;
        padding: 10px 15px;
        font-size: 12px;
        min-height: 40px;
        white-space: nowrap;
    }
    
    .search-icon {
        font-size: 12px;
    }
    
    .search-text {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
}

/* === State-City Explorer === */
.state-city-explorer {
    margin: 30px 0;
}

.state-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.state-tab {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
}

.state-tab:hover,
.state-tab.active {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: all 0.2s ease;
}

.city-link:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    background: #fff5f5;
}

.city-count {
    font-size: 11px;
    color: #999;
}

#listing_state_filter,
#listing_city {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

#listing_city:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* ============================================
   Call Girls Directory Page
   ============================================ */
.call-girls-directory-page {
    margin-top: 0;
}

.call-girls-directory-page .directory-hero {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 55%, #c0392b 100%);
    color: #fff;
    padding: 48px 0 56px;
    text-align: center;
}

.call-girls-directory-page .directory-breadcrumbs {
    text-align: left;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.call-girls-directory-page .directory-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.call-girls-directory-page .directory-breadcrumbs a:hover {
    text-decoration: underline;
}

.call-girls-directory-page .directory-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.55);
}

.call-girls-directory-page .directory-breadcrumbs .current {
    color: rgba(255, 255, 255, 0.95);
}

.call-girls-directory-page .directory-hero-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.2;
}

.call-girls-directory-page .directory-hero-stats {
    font-size: 17px;
    margin: 0;
    opacity: 0.92;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.call-girls-directory-page .directory-body {
    background: #f5f5f5;
    padding: 40px 0 60px;
}

.call-girls-directory-page .directory-intro {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.call-girls-directory-page .directory-intro .entry-content {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.call-girls-directory-page .directory-intro .entry-content p {
    margin: 0 0 14px;
}

.call-girls-directory-page .directory-intro .entry-content p:last-child {
    margin-bottom: 0;
}

.call-girls-directory-page .directory-intro .entry-content a {
    color: #e91e63;
    text-decoration: none;
}

.call-girls-directory-page .directory-intro .entry-content a:hover {
    color: #c2185b;
    text-decoration: underline;
}

.call-girls-directory-page .directory-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.call-girls-directory-page .directory-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.call-girls-directory-page .directory-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #c0392b);
    border-radius: 2px;
}

.call-girls-directory-page .directory-section-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.call-girls-directory-page .state-listing-section {
    margin: 0;
}

.call-girls-directory-page .state-cards-grid {
    gap: 24px;
}

@media (max-width: 768px) {
    .call-girls-directory-page .directory-hero {
        padding: 36px 0 44px;
    }

    .call-girls-directory-page .directory-hero-title {
        font-size: 28px;
    }

    .call-girls-directory-page .directory-hero-stats {
        font-size: 15px;
    }

    .call-girls-directory-page .directory-body {
        padding: 28px 0 48px;
    }

    .call-girls-directory-page .directory-intro {
        padding: 22px 20px;
        margin-bottom: 28px;
    }

    .call-girls-directory-page .directory-section-title {
        font-size: 22px;
    }

    .call-girls-directory-page .directory-section-desc {
        font-size: 14px;
    }

    .call-girls-directory-page .state-cards-grid {
        gap: 16px;
    }
}
