/* Modern frontend theme – inspired by directory-style home pages */
:root {
    --primary: #0abdca;
    --primary-dark: #0891a0;
    --accent: #0dd4e3;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --bg: #f5f5f7;
    --white: #fff;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --radius: 8px;
}

body.site-modern {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Top contact bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
}
.top-bar a:hover { opacity: .85; }
.top-bar .top-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar .btn-call {
    background: #2196f3;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
}
.top-bar .btn-wa {
    background: #25d366;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
}
.top-bar .hours {
    color: #aaa;
    font-size: 13px;
}

/* Main header */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}
.site-logo img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}
.site-logo span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* Nav */
.site-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    padding: 4px 8px;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}
.site-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s;
}
.site-nav a:hover,
.site-nav li.active a {
    background: rgba(255,255,255,.2);
}

/* Hero search */
.hero-search {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 50px 0 60px;
    color: var(--white);
}
.hero-search h1 {
    text-align: center;
    font-size: clamp(22px, 4vw, 36px);
    margin: 0 0 8px;
    font-weight: 700;
}
.hero-search .hero-sub {
    text-align: center;
    opacity: .9;
    margin-bottom: 30px;
    font-size: 16px;
}
.search-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    max-width: 900px;
    margin: 0 auto;
}
.search-box .search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.search-box label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.search-box select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    appearance: auto;
}
.search-box .btn-search {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s;
}
.search-box .btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(10, 189, 202, .4);
}

/* Content sections */
.section-block {
    padding: 50px 0;
}
.section-block.white { background: var(--white); }
.section-block .section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--primary-dark);
    margin: 0 0 12px;
    font-weight: 700;
}
.section-block .section-desc {
    text-align: center;
    color: var(--text-light);
    /*max-width: 720px;*/
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
}

/* Locations slider */
.locations-slider-wrap {
    position: relative;
    padding: 0 48px 40px;
}
.locations-slider-viewport {
    overflow: hidden;
    width: 100%;
}
.locations-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}
.locations-slider-track .location-card {
    flex-shrink: 0;
    min-height: 180px;
}
.locations-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locations-slider-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}
.locations-slider-prev { left: 0; }
.locations-slider-next { right: 0; }
.locations-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.locations-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.locations-slider-dots button.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Location card (slider + fallback grid) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.location-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.location-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 0 0 12px;
    font-weight: 700;
}
.location-card .city-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.location-card .city-links a {
    display: block;
    padding: 10px 12px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 0;
    font-size: 14px;
    transition: all .2s;
    border: none;
    border-bottom: 1px solid var(--border);
}
.location-card .city-links a:last-child {
    border-bottom: none;
}
.location-card .city-links a:hover {
    background: var(--bg);
    color: var(--primary);
    padding-left: 18px;
}

/* All cities pills */
.cities-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.cities-pills a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .2s;
}
.cities-pills a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* City page */
.city-page .state-block {
    margin-bottom: 30px;
}
.city-page .state-name {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.city-page .state-cities {
    background: var(--white);
    padding: 16px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.city-page .state-cities a {
    display: block;
    padding: 10px 14px;
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.city-page .state-cities a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #ccc;
    padding: 30px 0 0;
}
.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.site-footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}
.site-footer .footer-links a:hover { color: var(--white); }
.site-footer .footer-copy {
    background: #111;
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #888;
}
.site-footer .footer-copy a { color: var(--accent); text-decoration: none; }
.site-footer .age-warning {
    background: #2a2a3e;
    padding: 16px 20px;
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #999;
    text-align: center;
}

/* Listing detail page */
.listing-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 36px 0;
    color: var(--white);
}
.listing-hero h1 {
    margin: 0;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
}
.listing-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}
.listing-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.listing-photo {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
}
.listing-photo img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    margin: 0 auto;
}
.listing-details-card,
.listing-desc-card,
.listing-contact-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}
.listing-details-title {
    margin: 0 0 16px;
    font-size: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}
.listing-details-table {
    display: flex;
    flex-direction: column;
}
.listing-detail-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.listing-detail-row:last-child { border-bottom: none; }
.listing-detail-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}
.listing-detail-value {
    color: var(--text);
    font-size: 15px;
    word-break: break-word;
}
.listing-desc-body {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}
.listing-desc-body p { margin: 0 0 12px; }
.listing-desc-body span,
.listing-desc-body * { color: inherit !important; }
.listing-sidebar {
    position: sticky;
    top: 90px;
}
.listing-contact-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--primary-dark);
}
.listing-contact-card p {
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 14px;
}
.listing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    transition: transform .15s, box-shadow .15s;
}
.listing-btn:last-child { margin-bottom: 0; }
.listing-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.listing-btn-call { background: #2196f3; }
.listing-btn-wa { background: #25d366; }
.listing-similar {
    margin-top: 48px;
}
.listing-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.listing-similar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform .2s, box-shadow .2s;
}
.listing-similar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.listing-similar-img {
    height: 220px;
    overflow: hidden;
    background: var(--bg);
}
.listing-similar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.listing-similar-title {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Floating contact (override old icon-bar on modern pages) */
body.site-modern .icon-bar { display: none; }
.float-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-contact a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    text-decoration: none;
    transition: transform .2s;
}
.float-contact a:hover { transform: scale(1.08); }
.float-contact .fc-call { background: #2196f3; }
.float-contact .fc-wa { background: #25d366; }

/* FAQs */
.faqs-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    margin: 10px 0 20px;
}
.faqs-title {
    text-align: center;
    color: var(--primary-dark);
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 22px;
    font-weight: 700;
}
.faqs-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg);
}
.faq-item[open] {
    background: var(--white);
    border-color: var(--primary);
}
.faq-question {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: "+";
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}
.faq-item[open] .faq-question::after { content: "–"; }
.faq-answer {
    padding: 0 18px 16px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}
.faq-answer p { margin: 0 0 10px; }
.faq-answer span,
.faq-answer * { color: inherit !important; }

/* Explore more cities */
.more-cities-section {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 16px 0 36px;
/*    background: var(--white);
    box-shadow: var(--shadow);*/
    padding: 0 0 28px;
/*    border: 1px solid var(--border);*/
}
.more-cities-head {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 20px;
}
.more-cities-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 189, 202, 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(10, 189, 202, 0.35);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.more-cities-title {
    text-align: center;
    color: var(--primary-dark) !important;
    font-size: clamp(24px, 3.5vw, 32px);
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-shadow: none;
}
.more-cities-sub {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
}
.more-cities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    padding: 8px 22px 0;
}
.more-city-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    background: var(--bg);
    color: #123;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    animation: moreCityIn .45s ease both;
    animation-delay: calc(var(--i, 1) * 0.03s);
}
.more-city-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0abdca, #0891a0);
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}
.more-city-name {
    flex: 1;
    line-height: 1.3;
    color: #1a1a2e;
}
.more-city-go {
    color: #0abdca;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .25s ease;
    font-size: 13px;
}
.more-city-link:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(10, 189, 202, 0.18);
}
.more-city-link:hover .more-city-go {
    opacity: 1;
    transform: translateX(0);
}
.more-city-link:hover .more-city-icon {
    background: linear-gradient(135deg, #0891a0, #055965);
}
@keyframes moreCityIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .more-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 14px;
    }
    .more-cities-head { padding: 24px 16px 16px; }
    .more-city-link { padding: 12px 10px; }
    .more-city-go { display: none; }
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .site-nav.open { max-height: 300px; }
    .site-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    .site-nav a {
        display: block;
        padding: 14px 24px;
        border-radius: 0;
    }
    .site-header { position: relative; }
    .search-box .search-row {
        grid-template-columns: 1fr;
    }
    .search-box .btn-search { width: 100%; }
    .top-bar .container { justify-content: center; text-align: center; }
    .locations-slider-wrap { padding: 0 40px 36px; }
    .locations-slider-arrow { width: 36px; height: 36px; font-size: 14px; }
    .listing-layout {
        grid-template-columns: 1fr;
    }
    .listing-sidebar { position: static; }
    .listing-detail-row {
        grid-template-columns: 110px 1fr;
    }
    .listing-similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .listing-similar-img { height: 180px; }
}

@media (max-width: 480px) {
    .listing-similar-grid {
        grid-template-columns: 1fr;
    }
}
