/* ==================================================
LOCATION LIST PAGES — STATES / CITIES / LOCAL PLACES
================================================== */

.location-list-section {
    padding: 70px 0 90px;
    background: #f8fbff;
}

.location-list-header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.location-list-badge {
    display: inline-block;
    color: #e30613;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.location-list-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #111827;
    margin-bottom: 12px;
}

.location-list-header p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

.location-list-search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 36px;
}

.location-list-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    pointer-events: none;
}

.location-list-search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    font-size: 15px;
    color: #111827;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition: border-color .2s, box-shadow .2s;
}

.location-list-search-input:focus {
    outline: none;
    border-color: #e30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

.location-search-empty {
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 48px 24px;
    border: 1px solid rgba(0, 0, 0, .05);
}

.location-search-empty i {
    font-size: 42px;
    color: #d1d5db;
    margin-bottom: 14px;
    display: block;
}

.location-search-empty h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.location-search-empty p {
    color: #6b7280;
    margin: 0;
}

.location-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    transition: transform .35s ease, box-shadow .35s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(227, 6, 19, .12);
}

.location-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eef2f7;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.06);
}

.location-card-body {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 6px;
}

.location-card-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 14px;
    min-height: 38px;
}

.location-card-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.location-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
    padding: 7px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    transition: .3s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.location-card-btn-primary {
    background: #e30613;
    color: #fff;
}

.location-card-btn-primary:hover {
    background: #c4000f;
    color: #fff;
}

.location-card-btn-outline {
    background: #fff;
    color: #e30613;
    border-color: #e30613;
}

.location-card-btn-outline:hover {
    background: #e30613;
    color: #fff;
}

.location-empty-state {
    background: #fff;
    border-radius: 24px;
    padding: 56px 28px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
}

.location-empty-state i {
    font-size: 42px;
    color: #e30613;
    margin-bottom: 14px;
}

.location-empty-state h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.location-empty-state p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Content page */
.location-content-section {
    padding: 70px 0 90px;
    background: #fff;
}

.location-content-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.location-content-wrap h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: #111827;
    margin-bottom: 18px;
}

.location-short-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 28px;
    padding: 22px 24px;
    background: #f8fbff;
    border-left: 4px solid #fcbe14;
    border-radius: 0 16px 16px 0;
}

.location-long-desc {
    color: #374151;
    line-height: 1.9;
    font-size: 16px;
}

.location-long-desc h2,
.location-long-desc h3,
.location-long-desc h4 {
    color: #111827;
    font-weight: 800;
    margin-top: 28px;
    margin-bottom: 12px;
}

.location-faq-block {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.location-faq-block h3 {
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 20px;
}

/* State / city content page */
.state-content-page {
    background: #f8fbff;
}

.location-content-main {
    background: #fff;
    border-radius: 24px;
    padding: 36px 34px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .04);
}

.location-content-sidebar {
    position: sticky;
    top: 100px;
}

.location-sidebar-card,
.location-sidebar-cta {
    background: #fff;
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    border: 1px solid rgba(0, 0, 0, .04);
    margin-bottom: 18px;
}

.location-sidebar-card h4,
.location-sidebar-cta h5 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.location-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
    background: #f8fbff;
}

.location-sidebar-nav a i {
    color: #e30613;
    font-size: 16px;
}

.location-sidebar-nav a:hover {
    background: #e30613;
    color: #fff;
}

.location-sidebar-nav a:hover i {
    color: #fcbe14;
}

.location-sidebar-cta p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 16px;
}

.location-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: .3s;
}

.location-sidebar-btn-call {
    background: #e30613;
    color: #fff;
}

.location-sidebar-btn-call:hover {
    background: #c4000f;
    color: #fff;
}

.location-sidebar-btn-quote {
    background: #fff;
    color: #e30613;
    border: 2px solid #e30613;
}

.location-sidebar-btn-quote:hover {
    background: #e30613;
    color: #fff;
}

.location-coming-soon {
    text-align: center;
    padding: 20px 10px 10px;
}

.location-coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.location-coming-soon h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.location-coming-soon h3 {
    font-size: 22px;
    font-weight: 700;
    color: #e30613;
    margin-bottom: 18px;
}

.location-coming-soon p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 560px;
    margin: 0 auto 28px;
}

.location-coming-soon-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
}

.location-coming-soon-actions .location-card-btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 10px 14px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .location-list-section,
    .location-content-section {
        padding: 50px 0 70px;
    }

    .location-card-body h3 {
        font-size: 15px;
    }

    .location-content-sidebar {
        position: static;
    }

    .location-content-main {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .location-card-body {
        padding: 14px 10px 14px;
    }

    .location-card-actions {
        gap: 5px;
    }

    .location-card-btn {
        font-size: 9px;
        padding: 6px 6px;
        border-width: 1.5px;
    }

    .location-card-subtitle {
        min-height: auto;
        margin-bottom: 10px;
    }
}
