/* ==========================================================
   CITY_DETAIL.CSS
   Individual City / Service Area Pages
========================================================== */


/* ==========================================
   Shared Section Heading
========================================== */

.city-section-heading {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.city-section-heading p {
    margin: 0 0 10px;
    color: var(--lime, #c8f000);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.city-section-heading h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 38px;
    line-height: 1.15;
}

.city-section-heading span {
    display: block;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.65;
}

.city-section-heading-light h2 {
    color: #ffffff;
}

.city-section-heading-light span {
    color: #cbd5e1;
}


/* ==========================================
   Appliance Services
========================================== */

.city-services-section {
    padding: 62px 0;
    background: #f8fafc;
}

.city-services-section .container {
    width: min(100% - 32px, 1100px);
    margin: 0 auto;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.city-service-card {
    min-width: 0;
    min-height: 145px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.city-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--lime, #c8f000);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.city-service-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lime, #c8f000);
    background: #050713;
    font-size: 22px;
    border-radius: 14px;
}

.city-service-content {
    min-width: 0;
}

.city-service-content h3 {
    margin: 1px 0 7px;
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
}

.city-service-content p {
    margin: 0 0 11px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
}

.city-service-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #15803d;
    font-size: 14px;
    font-weight: 800;
}


/* ==========================================
   Common Problems
========================================== */

.city-problems-section {
    padding: 58px 0;
    background: #ffffff;
}

.city-problems-section .container {
    width: min(100% - 32px, 1100px);
    margin: 0 auto;
}

.city-problem-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.city-problem-chip {
    min-height: 48px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #111827;
    background: #f8fafc;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.city-problem-chip i {
    color: #16a34a;
}


/* ==========================================
   Why Choose Us
========================================== */

.city-benefits-section {
    padding: 68px 0;
    background: #101827;
}

.city-benefits-section .container {
    width: min(100% - 32px, 1100px);
    margin: 0 auto;
}

.city-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.city-benefit-card {
    min-height: 140px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
}

.city-benefit-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050713;
    background: var(--lime, #c8f000);
    font-size: 18px;
    border-radius: 13px;
}

.city-benefit-card h3 {
    margin: 1px 0 7px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
}

.city-benefit-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.55;
}


/* ==========================================
   Local Service Area
========================================== */

.city-local-section {
    padding: 62px 0;
    background: #f8fafc;
}

.city-local-section .container {
    width: min(100% - 32px, 1100px);
    margin: 0 auto;
}

.city-local-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.city-local-card {
    min-width: 0;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.city-local-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050713;
    background: var(--lime, #c8f000);
    font-size: 17px;
    border-radius: 12px;
}

.city-local-card h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
}

.city-local-card p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

.city-neighborhoods {
    margin-top: 52px;
}

.city-neighborhood-heading {
    margin-bottom: 26px;
}

.city-neighborhood-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.city-neighborhood-chip {
    min-height: 46px;
    padding: 10px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #111827;
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.city-neighborhood-chip i {
    color: #16a34a;
}


/* ==========================================
   Brand Logos
========================================== */

.city-brands-section {
    padding: 64px 0 72px;
    background: #ffffff;
}

.city-brands-section .container {
    width: min(100% - 32px, 1200px);
    margin: 0 auto;
}


/* ==========================================
   FAQ
========================================== */

.city-faq-section {
    padding: 64px 0;
    background: #f8fafc;
}

.city-faq-section .container {
    width: min(100% - 32px, 1000px);
    margin: 0 auto;
}

.city-faq-list {
    display: grid;
    gap: 14px;
}

.city-faq-item {
    overflow: hidden;
    margin: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.city-faq-item summary {
    position: relative;
    display: block;
    margin: 0;
    padding: 20px 56px 20px 22px;
    color: #111827;
    background: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.city-faq-item summary::-webkit-details-marker {
    display: none;
}

.city-faq-item summary::marker {
    content: "";
}

.city-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    color: #16a34a;
    font-size: 24px;
    font-weight: 700;
    transform: translateY(-50%);
}

.city-faq-item[open] summary::after {
    content: "−";
}

.city-faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #4b5563;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================
   Final CTA
========================================== */

.city-final-cta {
    padding: 68px 0;
    color: #ffffff;
    background: #131d33;
    text-align: center;
}

.city-final-cta .container {
    width: min(100% - 32px, 900px);
    margin: 0 auto;
}

.city-final-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.15;
}

.city-final-cta p {
    margin: 0 0 28px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.6;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {
    .city-services-grid,
    .city-benefits-grid,
    .city-local-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 560px) {
    .city-services-section,
    .city-problems-section,
    .city-benefits-section,
    .city-local-section,
    .city-brands-section,
    .city-faq-section,
    .city-final-cta {
        padding: 44px 0;
    }

    .city-services-section .container,
    .city-problems-section .container,
    .city-benefits-section .container,
    .city-local-section .container,
    .city-brands-section .container,
    .city-faq-section .container,
    .city-final-cta .container {
        width: calc(100% - 20px);
    }

    .city-section-heading {
        margin-bottom: 26px;
    }

    .city-section-heading p {
        margin-bottom: 8px;
        font-size: 13px;
        letter-spacing: 2.4px;
    }

    .city-section-heading h2 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.16;
    }

    .city-section-heading span {
        font-size: 15px;
        line-height: 1.55;
    }

    .city-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .city-service-card {
        min-height: 0;
        padding: 17px;
        align-items: center;
        gap: 13px;
        border-radius: 15px;
    }

    .city-service-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 19px;
        border-radius: 12px;
    }

    .city-service-content h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }

    .city-service-content p {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.5;
    }

    .city-service-action {
        font-size: 13px;
    }

    .city-problem-grid,
    .city-neighborhood-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .city-problem-chip,
    .city-neighborhood-chip {
        width: 100%;
        min-width: 0;
        padding: 10px;
        font-size: 13px;
    }

    .city-benefits-grid,
    .city-local-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .city-benefit-card,
    .city-local-card {
        min-height: 0;
        padding: 17px;
        align-items: center;
        gap: 13px;
        border-radius: 15px;
    }

    .city-benefit-icon,
    .city-local-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .city-benefit-card h3,
    .city-local-card h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }

    .city-benefit-card p,
    .city-local-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .city-neighborhoods {
        margin-top: 38px;
    }

    .city-faq-list {
        gap: 10px;
    }

    .city-faq-item {
        border-radius: 14px;
    }

    .city-faq-item summary {
        padding: 17px 48px 17px 16px;
        font-size: 16px;
        line-height: 1.35;
    }

    .city-faq-item summary::after {
        right: 16px;
        font-size: 22px;
    }

    .city-faq-item p {
        padding: 0 16px 17px;
        font-size: 14px;
        line-height: 1.55;
    }

    .city-final-cta h2 {
        font-size: 30px;
    }

    .city-final-cta p {
        font-size: 15px;
    }
}


/* ==========================================================
   SMALL PHONES
========================================================== */

@media (max-width: 380px) {
    .city-section-heading h2,
    .city-final-cta h2 {
        font-size: 27px;
    }

    .city-problem-grid,
    .city-neighborhood-grid {
        grid-template-columns: 1fr;
    }
}