body {
    background: #f8fafc;
}

.city-page {
    color: #111827;
}

.city-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HERO */
.city-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.68) 0%,
            rgba(15, 23, 42, 0.52) 48%,
            rgba(15, 23, 42, 0.35) 100%
        ),
        var(--hero-image);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.city-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: start;
    padding-top: 0;
    padding: 80px 0;
}

.city-quote-card {
    position: relative;
    z-index: 3;
    background: #ffffff;
    color: #111827;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.city-quote-card {
    position: relative;
    z-index: 3;
    background: #ffffff;
    color: #111827;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.city-quote-card h2 {
    font-size: 25px;
    margin-bottom: 4px;
}

.quote-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
}

.city-quote-form {
    gap: 11px;
}

.form-row {
    gap: 5px;
}

.form-row label {
    font-size: 12px;
}

.city-quote-form input:not([type="checkbox"]),
.city-quote-form select,
.city-quote-form textarea {
    padding: 10px 12px;
    min-height: 42px;
    font-size: 14px;
    border-radius: 10px;
}


.sms-label span {
    font-size: 11px;
    line-height: 1.35;
}

.city-form-submit {
    padding: 13px 24px;
    font-size: 14px;
    margin-top: 2px;
}

.quote-note {
    font-size: 11px;
}

.quote-errors {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
}

.quote-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.quote-success h3 {
    color: #166534;
    font-size: 28px;
    margin-bottom: 10px;
}

.quote-success p {
    color: #166534;
}


.city-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.city-breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
    color: #cbd5e1;
}

.city-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.city-hero h1 {
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 22px;
}

.city-hero p {
    font-size: 21px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 34px;
}

.city-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.city-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.city-btn-primary {
    background: #d61b12;
    color: #fff;
}

.city-btn-primary:hover {
    background: #b9160f;
    color: #fff;
    transform: translateY(-3px);
}

.city-btn-secondary {
    background: #ffffff;
    color: #000000;
}

.city-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* INTRO CARD */
.city-intro {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.city-intro-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    font-size: 18px;
    line-height: 1.8;
}

/* STATS */
.city-stats {
    padding: 45px 0 80px;
}

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

.city-stat-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.07);
}

.city-stat-box strong {
    display: block;
    font-size: 30px;
    color: #d61b12;
    margin-bottom: 6px;
}

.city-stat-box span {
    font-weight: 700;
    color: #475569;
}

/* SECTIONS */
.city-section {
    padding: 90px 0;
}

.city-section-white {
    background: #fff;
}

.city-section-gray {
    background: #f8fafc;
}

.city-section h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    margin-bottom: 45px;
}

/* SERVICES */
.city-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.city-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
    border: 1px solid #eef2f7;
}

.city-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.city-service-icon {
    width: 48px;
    height: 48px;
    background: #fee2e2;
    color: #d61b12;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.city-service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.city-service-card p {
    line-height: 1.7;
    color: #475569;
}

/* CONTENT */
.city-content-box {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.85;
    color: #334155;
}

/* AREAS */
.city-areas-card {
    background: #0f172a;
    color: #fff;
    border-radius: 24px;
    padding: 45px;
    font-size: 18px;
    line-height: 1.8;
}

.city-areas-card h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 20px;
}

/* PROCESS */
.city-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step;
}

.city-process-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    position: relative;
}

.city-process-card::before {
    counter-increment: step;
    content: counter(step);
    width: 42px;
    height: 42px;
    background: #d61b12;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px;
}

.city-process-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.city-process-card p {
    color: #475569;
    line-height: 1.7;
}

/* FAQ */
.city-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.city-faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.city-faq-item h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.city-faq-item p {
    color: #475569;
    line-height: 1.75;
}

/* FINAL CTA */
.city-quote {
    background: linear-gradient(135deg, #d61b12, #991b1b);
    color: #fff;
    text-align: center;
    padding: 90px 0;
}

.city-quote h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 18px;
}

.city-quote p {
    font-size: 20px;
    margin-bottom: 32px;
}


.sms-consent-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 14px;
}

.sms-checkbox-wrap {
    flex: 0 0 auto;
    padding-top: 3px;
}

.sms-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin: 0;
    padding: 0;
    accent-color: #d61b12;
    cursor: pointer;
}

.sms-consent-label {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}

.sms-consent-label a {
    color: #d61b12;
    font-weight: 700;
    text-decoration: underline;
}

/* SUCCESS MESSAGE AFTER QUOTE SUBMIT */
.city-quote-card .quote-success {
    background: #ffffff;
    border: 2px solid #bbf7d0;
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.city-quote-card .quote-success::before {
    content: "✓";
    width: 64px;
    height: 64px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.city-quote-card .quote-success h3 {
    color: #14532d !important;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.city-quote-card .quote-success p {
    color: #334155 !important;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    max-width: 360px;
    margin: 0 auto;
}

/* Make padding stay inside declared widths */
.city-page *,
.city-page *::before,
.city-page *::after {
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 992px) {
    .city-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .city-hero-content {
        max-width: 100%;
    }

    .city-quote-card {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .city-container {
        width: calc(100% - 32px);
        max-width: 100%;
    }

    .city-hero {
        padding: 95px 0 55px;
    }

    .city-hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 45px;
        align-items: start;
    }

    .city-hero-content,
    .city-quote-card {
        width: 100%;
        max-width: 500px;
        justify-self: end;
        padding: 24px;
    }

    .city-breadcrumb {
        margin-bottom: 18px;
    }

    .city-hero h1 {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .city-hero p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 25px;
    }

    .city-quote-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .city-quote-card h2 {
        font-size: 27px;
    }

    .city-quote-form {
        width: 100%;
        min-width: 0;
    }

    .form-row,

    .form-row > div {
        min-width: 0;
    }

    .city-quote-form input:not([type="checkbox"]),
    .city-quote-form select,
    .city-quote-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .sms-label {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .sms-label input[type="checkbox"] {
        flex: 0 0 auto;
        width: 18px;
        height: 18px;
        margin-top: 3px;
    }

    .sms-label span {
        min-width: 0;
        font-size: 12px;
        line-height: 1.5;
    }

    .city-intro {
        margin-top: 0;
    }

    .city-intro-card {
        padding: 25px 20px;
        font-size: 16px;
    }

    .city-stats {
        padding: 35px 0 55px;
    }

    .city-stats-grid,
    .city-service-grid,
    .city-process-grid {
        grid-template-columns: 1fr;
    }

    .city-section {
        padding: 55px 0;
    }

    .city-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .city-service-card,
    .city-process-card,
    .city-faq-item {
        padding: 24px 20px;
    }

    .city-areas-card {
        padding: 28px 22px;
    }

    .city-quote {
        padding: 60px 0;
    }

    .city-buttons {
        flex-direction: column;
    }

    .city-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   CLEAN CITY QUOTE FORM
   ========================= */

.city-quote-card {
    width: 100%;
    max-width: 520px;
    justify-self: end;
    background: #ffffff;
    color: #111827;
    border-radius: 22px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.city-quote-card h2 {
    margin: 0 0 5px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    color: #111827;
}

.city-quote-card .quote-subtitle {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
}

.city-quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.city-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    margin: 0;
}

.city-quote-form .form-row.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.city-quote-form .form-row.two-cols > div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.city-quote-form label {
    display: block;
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    color: #334155;
}

.city-quote-form input:not([type="checkbox"]),
.city-quote-form select,
.city-quote-form textarea {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    height: 46px;
    margin: 0;
    padding: 10px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    background: #f8fafc;
    color: #111827;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.city-quote-form input:not([type="checkbox"]):focus,
.city-quote-form select:focus,
.city-quote-form textarea:focus {
    border-color: #d61b12;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(214, 27, 18, 0.1);
}

/* SMS consent */
.city-quote-form .sms-consent {
    margin: 2px 0 0;
}

.city-quote-form .sms-label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.city-quote-form .sms-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 2px 0 0;
    padding: 0;
    accent-color: #d61b12;
}

.city-quote-form .sms-label span {
    display: block;
    min-width: 0;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 500;
    color: #475569;
}

.city-quote-form .sms-label a {
    color: #d61b12;
    font-weight: 800;
    text-decoration: underline;
}

/* Submit button */
.city-quote-form .city-form-submit {
    display: block;
    width: 100% !important;
    min-height: 48px;
    margin: 3px 0 0;
    padding: 13px 20px;
    border: 0 !important;
    border-radius: 999px;
    background: #d61b12 !important;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    box-shadow: none;
    appearance: none;
}

.city-quote-form .city-form-submit:hover {
    background: #b9160f !important;
    transform: translateY(-1px);
}

.city-quote-form .quote-note {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
    .city-quote-card {
        max-width: 100%;
        justify-self: stretch;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .city-quote-card h2 {
        font-size: 25px;
    }

    .city-quote-form .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* City hero fixes */
.city-hero h1 {
    color: #ffffff !important;
}

.city-breadcrumb {
    color: #cbd5e1 !important;
}

.city-breadcrumb a {
    color: #ffffff !important;
}

.city-hero::after {
    display: none !important;
    content: none !important;
}

.city-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.city-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =========================
   BELLEVUE SERVICE AREAS
   ========================= */

.city-areas-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 27, 18, 0.09),
            transparent 35%
        ),
        #f8fafc;
}

.city-areas-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.city-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #d61b12;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.city-areas-heading h2 {
    margin: 0 0 15px;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 900;
}

.city-areas-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

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

.city-area-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    min-width: 0;
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.city-area-item:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 27, 18, 0.3);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}

.city-area-icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: #fee2e2;
    color: #d61b12;
    font-size: 24px;
    font-weight: 900;
}

.city-area-copy {
    min-width: 0;
}

.city-area-copy h3 {
    margin: 1px 0 7px;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.city-area-copy p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
}

/* Mobile */
@media (max-width: 768px) {
    .city-areas-section {
        padding: 60px 0;
    }

    .city-areas-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .city-areas-heading h2 {
        font-size: 32px;
    }

    .city-areas-heading p {
        font-size: 16px;
    }

    .city-areas-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .city-area-item {
        padding: 20px;
    }

    .city-area-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 21px;
    }
}

/* =========================
   WHY CHOOSE BEST MOVERS
   ========================= */

.city-section-white:has(.city-content-box) {
    background:
        radial-gradient(
            circle at top left,
            rgba(214, 27, 18, 0.06),
            transparent 32%
        ),
        #ffffff;
}

.city-section-white:has(.city-content-box) > .city-container {
    max-width: 1180px;
}

.city-content-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.city-content-box p {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 30px 28px 28px 76px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.city-content-box p:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 27, 18, 0.3);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

/* Red icon circle */
.city-content-box p::before {
    content: "✓";
    position: absolute;
    top: 28px;
    left: 24px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: #fee2e2;
    color: #d61b12;
    font-size: 18px;
    font-weight: 900;
}

/* Make first line look like card title */
.city-content-box p::first-line {
    color: #0f172a;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .city-content-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .city-content-box p {
        padding: 24px 20px 22px 67px;
        font-size: 15px;
    }

    .city-content-box p::before {
        top: 23px;
        left: 19px;
        width: 34px;
        height: 34px;
    }

    .city-content-box p::first-line {
        font-size: 18px;
    }
}

/* FINAL MOBILE CITY PAGE FIX */
@media (max-width: 768px) {
    .city-hero {
        padding: 95px 0 50px;
        background-position: 38% center;
    }

    .city-container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .city-hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px !important;
        align-items: start !important;
        width: 100% !important;
    }

    .city-hero-content,
    .city-quote-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        justify-self: stretch !important;
    }

    .city-hero h1 {
        font-size: 38px !important;
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .city-hero p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

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

    .city-btn {
        width: 100%;
        text-align: center;
    }

    .city-trust-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 18px;
    }

    .city-quote-card {
        padding: 24px 18px !important;
        border-radius: 18px;
    }

    .city-quote-card h2 {
        font-size: 25px;
        line-height: 1.15;
    }

    .city-quote-form .form-row.two-cols {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px;
    }

    .city-quote-form input:not([type="checkbox"]),
    .city-quote-form select,
    .city-quote-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .sms-label {
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .sms-label span {
        font-size: 11px;
        line-height: 1.45;
    }
}