/*
  Service Area City Pages
  Loaded only on /service-areas/{city}/ pages.
*/

/* ===================================
   Enhanced City Pages Hero Section
   =================================== */

/* IMPORTANT: base .masthead--innerpage__bg is absolutely positioned (see header.css).
   Do NOT change it to relative, or the masthead becomes extremely tall. */
.masthead--service-area-city.masthead--innerpage,
.masthead--core-service.masthead--innerpage {
    /* v6 navy gradient background */
    background: linear-gradient(135deg, #011635 0%, #042452 40%, #062d5e 70%, #011635 100%);
    background-size: 200% 200%;
    animation: cityHeroGradient 20s ease infinite;
    overflow: hidden;
    position: relative;
}

@keyframes cityHeroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Decorative gold glow accent */
.masthead--service-area-city.masthead--innerpage::before,
.masthead--core-service.masthead--innerpage::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.masthead--service-area-city .masthead--innerpage__bg,
.masthead--core-service .masthead--innerpage__bg {
    /* Keep base absolute positioning; just tune blending/filters. */
    mix-blend-mode: normal;
}

.masthead--service-area-city .masthead--innerpage__bg img,
.masthead--core-service .masthead--innerpage__bg img {
    position: relative;
    z-index: 1;
    filter: saturate(1.1) contrast(1.08) brightness(1.02);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.masthead--service-area-city:hover .masthead--innerpage__bg img,
.masthead--core-service:hover .masthead--innerpage__bg img {
    transform: scale(1.02);
    filter: saturate(1.15) contrast(1.1) brightness(1.04);
}

.masthead--service-area-city .masthead--innerpage__bg::after,
.masthead--core-service .masthead--innerpage__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(1, 22, 53, 0.88) 0%,
        rgba(4, 36, 82, 0.6) 45%,
        rgba(6, 45, 94, 0.3) 70%,
        rgba(0, 0, 0, 0) 100%
    );
}

.masthead--service-area-city .masthead--innerpage__text,
.masthead--core-service .masthead--innerpage__text {
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.masthead--service-area-city .masthead--innerpage__wrapper,
.masthead--core-service .masthead--innerpage__wrapper {
    padding: 32px 0 40px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .masthead--service-area-city .masthead--innerpage__wrapper,
    .masthead--core-service .masthead--innerpage__wrapper {
        padding: 40px 0 50px;
    }
}

@media (min-width: 1200px) {
    .masthead--service-area-city .masthead--innerpage__wrapper,
    .masthead--core-service .masthead--innerpage__wrapper {
        padding: 50px 0 60px;
    }
}

/* Center hero content for service-area-city and core service pages */
.masthead--service-area-city__text {
    text-align: center !important;
}

.masthead--service-area-city .masthead--innerpage__text h1,
.masthead--core-service .masthead--innerpage__text h1 {
    margin-bottom: 0;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    font-weight: 800;
}

/* Service-area city and core service masthead H1 sizing */
@media (min-width: 992px) {
    .masthead--service-area-city .masthead--innerpage__text h1,
    .masthead--core-service .masthead--innerpage__text h1 {
        font-size: 48px;
        line-height: 1.12;
        letter-spacing: -0.02em;
    }
}

@media (min-width: 1200px) {
    .masthead--service-area-city .masthead--innerpage__text h1,
    .masthead--core-service .masthead--innerpage__text h1 {
        font-size: 54px;
        line-height: 1.14;
    }
}

/* ── Hero Breadcrumb ── */
.masthead-sac__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    line-height: 1.4;
}
.masthead-sac__breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.masthead-sac__breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.masthead-sac__breadcrumb span {
    color: rgba(255,255,255,0.55);
}
.masthead-sac__sep {
    color: rgba(255,255,255,0.4);
    margin: 0 2px;
}

/* ── Hero Trust Row (rating + badges) ── */
.masthead-sac__trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}
.masthead-sac__stars {
    color: #f6e27f;
    font-size: 14px;
    letter-spacing: 1px;
}
.masthead-sac__rating {
    font-size: 13px;
}
.masthead-sac__rating strong {
    color: #fff;
    font-weight: 700;
}
.masthead-sac__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.masthead-sac__badge {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 3px 12px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .masthead-sac__breadcrumb { font-size: 10px; margin-bottom: 12px; }
    .masthead-sac__trust-row { gap: 6px; font-size: 11px; }
    .masthead-sac__badge { font-size: 10px; padding: 2px 8px; }
    .masthead-sac__divider { display: none; }
}

.masthead--service-area-city .breadcrumbs a,
.masthead--service-area-city .breadcrumbs span,
.masthead--core-service .breadcrumbs a,
.masthead--core-service .breadcrumbs span {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.masthead--service-area-city .breadcrumbs a:hover,
.masthead--core-service .breadcrumbs a:hover {
    color: #f6e27f;
}

/* Anniversary badge for city pages and core service pages */
.masthead--service-area-city .city-anniversary-badge,
.masthead--core-service .city-anniversary-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(246,226,127,0.15) 100%);
    border: 1px solid rgba(212,175,55,0.4);
    color: #f6e27f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(212,175,55,0.15);
    animation: cityBadgePulse 3s ease-in-out infinite;
}

@keyframes cityBadgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.15); }
    50% { box-shadow: 0 4px 30px rgba(212,175,55,0.25); }
}

/* Subheading/description styling */
.masthead--service-area-city .masthead--innerpage__text p,
.masthead--core-service .masthead--innerpage__text p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.6;
    max-width: 540px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .masthead--service-area-city .masthead--innerpage__text p,
    .masthead--core-service .masthead--innerpage__text p {
        font-size: 18px;
    }
}

/* CTA buttons in city hero */
.masthead--service-area-city .masthead--innerpage__text .btn-group,
.masthead--core-service .masthead--innerpage__text .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.masthead--service-area-city .masthead--innerpage__text .btn-primary,
.masthead--core-service .masthead--innerpage__text .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 700;
    color: #011635;
    box-shadow:
        0 8px 25px -5px rgba(212,175,55,0.4),
        0 4px 10px -3px rgba(212,175,55,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.masthead--service-area-city .masthead--innerpage__text .btn-primary:hover,
.masthead--core-service .masthead--innerpage__text .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px -5px rgba(212,175,55,0.5),
        0 6px 15px -3px rgba(212,175,55,0.35);
    color: #011635;
}

.masthead--service-area-city .masthead--innerpage__text .btn-secondary,
.masthead--core-service .masthead--innerpage__text .btn-secondary {
    background: transparent;
    border: 2px solid rgba(212,175,55,0.6);
    border-radius: 12px;
    padding: 12px 24px;
    color: #f6e27f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.masthead--service-area-city .masthead--innerpage__text .btn-secondary:hover,
.masthead--core-service .masthead--innerpage__text .btn-secondary:hover {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    transform: translateY(-2px);
    color: #f6e27f;
}

/* -------------------------------------------------
   Service-area Lead Form (custom one-question wizard)
   Inserted below the masthead on any page under /service-areas/
   ------------------------------------------------- */

.hales-service-area-lead {
    position: relative;
    z-index: 5;
    margin-top: -30px;
    padding: 0 0 18px;
}

.hales-service-area-lead__card {
    background: #fff;
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(1, 22, 53, 0.12);
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .hales-service-area-lead {
        margin-top: -20px;
    }
    .hales-service-area-lead__card {
        grid-template-columns: 1fr;
    }
}

.hales-service-area-lead__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #011635;
    opacity: 0.9;
    font-size: 12px;
    margin-bottom: 8px;
}

.hales-service-area-lead__copy h2 {
    margin: 0 0 8px;
}

.hales-service-area-lead__copy {
    max-width: 620px;
}

.hales-service-area-lead__copy p {
    margin: 0;
}

.hales-service-area-lead__proof {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 6px;
}

.hales-service-area-lead__proof li {
    position: relative;
    padding-left: 22px;
}

.hales-service-area-lead__proof li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #011635;
    /* Some global theme styles add a small colored dot to list-item ::before.
       Hard override here so our proof list is checkmarks only (no extra bullets/dots). */
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block;
    line-height: 1;
}

.hales-service-area-lead__proof li {
    list-style: none !important;
}

.hales-service-area-lead__proof li::marker {
    content: none !important;
    color: transparent;
}

.hales-service-area-lead__actions {
    margin-top: 14px;
    gap: 12px;
}

.hales-lead-form {
    border-radius: 14px;
    background: rgba(1, 22, 53, 0.03);
    padding: 14px;
}

.hales-lead-form__progress {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.hales-lead-form__question {
    font-weight: 800;
    margin-bottom: 10px;
}

.hales-lead-form__input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(1, 22, 53, 0.18);
    padding: 12px 12px;
    background: #fff;
}

.hales-lead-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.hales-lead-form__actions .btn {
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 800;
}

.hales-lead-form__fineprint {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}

/* -------------------------------------------------
   Service-area City Quick Nav (Phase 2)
   Rendered only on /service-areas/{city}/ root pages
   ------------------------------------------------- */

.hales-service-area-nav {
    position: relative;
    z-index: 4;
    margin: 10px 0 22px;
}

.hales-service-area-nav__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(1, 22, 53, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(1, 22, 53, 0.10);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hales-service-area-nav__label {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
}

.hales-service-area-nav__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(1, 22, 53, 0.06);
    text-decoration: none;
    font-weight: 700;
    color: #011635;
    white-space: nowrap;
    transition: background 160ms ease, transform 160ms ease;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.hales-service-area-nav__item:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.hales-service-area-nav__item:hover {
    background: rgba(212, 175, 55, 0.14);
    transform: translateY(-1px);
}

.hales-service-area-nav__item--primary {
    background: #042452;
    color: #fff;
    box-shadow: 0 10px 24px rgba(4, 36, 82, 0.18);
}

.hales-service-area-nav__item--primary:hover {
    background: #011635;
}

/* Generator-emitted city page content helpers (inside the ACF half-media-half-text WYSIWYG). */

.hales-city-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 18px 0 26px;
}

.hales-city-cta-row .btn {
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
}

.hales-city-nearby-list,
.hales-city-proof-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

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

@media (max-width: 575px) {
    .hales-city-nearby-list {
        grid-template-columns: 1fr;
    }
}

.hales-city-proof-list li,
.hales-city-nearby-list li {
    margin: 0;
}

/* v3 city page body layout */

.hales-city-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 12px 0 22px;
}

@media (max-width: 575px) {
    .hales-city-service-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-service-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.hales-city-service-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(1, 22, 53, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #011635;
}

.hales-city-service-card__icon svg {
    width: 22px;
    height: 22px;
}

.hales-city-service-card__body {
    min-width: 0;
}

.hales-city-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(1, 22, 53, 0.12);
}

.hales-city-service-card h4 {
    margin: 0 0 6px;
}

.hales-city-service-card p {
    margin: 0 0 10px;
}

.hales-city-service-card__link {
    font-weight: 700;
}

.hales-city-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 22px;
}

.hales-city-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(1, 22, 53, 0.06);
    text-decoration: none;
    font-weight: 600;
}

.hales-city-proof-list li {
    position: relative;
    padding-left: 22px;
}

.hales-city-proof-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #011635;
    font-weight: 800;
}

.hales-city-faq {
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 10px 0;
    background: #fff;
}

.hales-city-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.hales-city-faq__answer {
    margin-top: 10px;
}

.hales-city-faq__answer p {
    margin: 0;
}

/* ----------------------------
   v4 full redesign (full-width sections)
   ---------------------------- */

.hales-city-v4 {
    padding: 42px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

@media (max-width: 767px) {
    .hales-city-v4 {
        padding: 32px 0;
        scroll-margin-top: 96px;
    }
}

.hales-city-v4 .container {
    position: relative;
    z-index: 1;
}

/* Section differentiation (v4) */

.hales-city-v4--intro {
    background: linear-gradient(180deg, rgba(4, 36, 82, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
}

/* ── v6 Intro: side-by-side image + text ─────────────────────── */
.hales-city-v6-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 767px) {
    .hales-city-v6-intro-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.hales-city-v6-intro-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px -6px rgba(1, 22, 53, 0.18);
}

.hales-city-v6-intro-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.hales-city-v6-intro-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hales-city-v6-intro-text .hales-city-v5-kicker {
    margin-bottom: 12px;
}

.hales-city-v6-intro-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 18px;
}

/* v6 Proof grid — 2-col with check icons */
.hales-city-v6-proof-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0 !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    list-style: none !important;
}

.hales-city-v6-proof-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    margin: 0 !important;
    border: 1px solid rgba(1, 22, 53, 0.10);
    border-bottom: none;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    background: #fff;
}

.hales-city-v6-proof-grid li:first-child {
    border-radius: 10px 10px 0 0;
}

.hales-city-v6-proof-grid li:last-child {
    border-bottom: 1px solid rgba(1, 22, 53, 0.10);
    border-radius: 0 0 10px 10px;
}

.hales-city-v6-proof-grid li::before {
    display: none !important;
}

.hales-city-v6-check {
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
    flex: 0 0 auto;
    line-height: 1;
}

/* v6 CTA buttons — gold/navy to match site-wide anniversary theme */
.hales-city-v6-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.hales-city-v6-cta-row .btn {
    padding: 13px 28px;
    font-size: 14px;
    letter-spacing: 0.06em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hales-city-v6-cta-row .btn-primary {
    background: var(--anniv-gradient-gold, linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%)) !important;
    color: var(--anniv-navy, #011635) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hales-city-v6-cta-row .btn-primary:hover {
    background: linear-gradient(135deg, #c9a430 0%, #ebd86f 50%, #c9a430 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hales-city-v6-cta-row .btn-secondary {
    background: var(--anniv-navy, #011635) !important;
    color: #fff !important;
    border: 2px solid var(--anniv-navy, #011635) !important;
    box-shadow: 0 4px 12px rgba(1, 22, 53, 0.15);
}

.hales-city-v6-cta-row .btn-secondary:hover {
    background: var(--anniv-navy-light, #042452) !important;
    border-color: var(--anniv-navy-light, #042452) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(1, 22, 53, 0.35);
}

.hales-city-v4--problems {
    background: #fff;
    /* Room for the bottom curve SVG when present */
    padding-bottom: 92px;
}

@media (min-width: 768px) {
    .hales-city-v4--problems {
        padding-bottom: 125px;
    }
}

/* Phase 4: when Problems/Technicians sections use the theme "image-text" layout,
   override the stock mobile offsets so our v4 typography stays aligned. */
.hales-city-v4--problems.image-text .image-text__text,
.hales-city-v4--technicians.image-text .image-text__text {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* When the right column is an accordion (tall), avoid vertical-centering the image column.
   This prevents the large "dead space" look on desktop. */
.hales-city-v4--problems.image-text .flex-row,
.hales-city-v4--technicians.image-text .flex-row {
    align-items: flex-start;
}

.hales-city-v4--problems.image-text .image-text__img,
.hales-city-v4--technicians.image-text .image-text__img {
    margin: 0 !important;
}

.hales-city-v4--problems::before {
    content: none;
}

.hales-city-v4--process {
    background: #f9fafb;
}

/* Process section: convert h4 + following p pairs into step cards (no content changes required) */
.hales-city-v4--process {
    counter-reset: halesProcessStep;
}

/* Phase 4: when markup uses explicit wrappers, handle spacing on the wrapper (not the heading). */
.hales-city-v4--process .hales-process-step {
    margin: 16px 0 0;
}

.hales-city-v4--process h4 {
    counter-increment: halesProcessStep;
    position: relative;
    margin: 0;
    padding: 14px 16px 12px 52px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 14px 34px rgba(1, 22, 53, 0.08);
}

.hales-city-v4--process h4::before {
    content: counter(halesProcessStep);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: #042452;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.hales-city-v4--process h4 + p {
    margin: 0 0 12px;
    padding: 0 16px 14px 52px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.hales-city-v4--why {
    background: #fff;
}

/* Why section: present proof points as benefit cards */
.hales-city-v4--why .hales-city-v4-proof {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 575px) {
    .hales-city-v4--why .hales-city-v4-proof {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4--why .hales-city-v4-proof li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    padding: 12px 12px 12px 40px;
    box-shadow: 0 14px 34px rgba(1, 22, 53, 0.06);
}

.hales-city-v4--why .hales-city-v4-proof li::before {
    left: 14px;
    top: 12px;
    color: #d4af37;
}

.hales-city-v4--brands {
    background: #f9fafb;
}

/* Brands section: convert plain UL into a chip grid */
.hales-city-v4--brands ul {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hales-city-v4--brands li {
    list-style: none !important;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    font-weight: 800;
    line-height: 1;
}

.hales-city-v4--brands li::before {
    content: none !important;
}

.hales-city-v4--brands li::marker {
    content: none !important;
    color: transparent;
}

.hales-city-v4--service-area {
    background: #fff;
}

/* Service Area Details */
.hales-city-v4--service-area .container {
    background: #fff;
}

.hales-city-v4--service-area .hales-service-area-details {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 767px) {
    .hales-city-v4--service-area .hales-service-area-details {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4--service-area .hales-service-area-details__facts > p {
    margin: 10px 0;
    max-width: none;
}

.hales-city-v4--service-area .hales-service-area-details__facts > p > strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: #042452;
    font-weight: 900;
}

/* ZIP codes line: we can’t split raw text nodes into chips via CSS, but we can
   make the numeric list scan/warp nicely and feel more "pill-like". */
.hales-city-v4--service-area .hales-service-area-details__facts > p {
    line-height: 1.55;
}

.hales-city-v4--service-area .hales-service-area-details__facts > p,
.hales-city-v4--service-area .hales-service-area-details__facts > p strong {
    font-variant-numeric: tabular-nums;
}

.hales-city-v4--service-area .hales-service-area-details__nearby {
    background: rgba(4, 36, 82, 0.06);
    border: 1px solid rgba(1, 22, 53, 0.10);
    border-radius: 16px;
    padding: 14px;
}

.hales-city-v4--service-area .hales-service-area-details__nearby h4 {
    margin: 0 0 10px;
}

.hales-city-v4--service-area .hales-service-area-details__cta {
    margin: 14px 0 0;
}

.hales-city-v4--service-area .hales-city-v4-chips {
    margin: 10px 0 14px;
}

.hales-city-v4--service-area .hales-city-v4-chip:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.22);
}

.hales-city-v4--climate {
    background: #f9fafb;
}

.hales-city-v4--repair-replace {
    background: #fff;
}

/* Repair vs Replace: turn each (h4 + ul) block into a card; lay out 2-up on desktop */
.hales-city-v4--repair-replace .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* IMPORTANT: keep row gap at 0 so each (h4 + ul) card stays visually connected.
       Spacing between blocks is handled via margins on headings/lists below. */
    gap: 0 18px;
}

@media (max-width: 767px) {
    .hales-city-v4--repair-replace .container {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4--repair-replace .container > h3,
.hales-city-v4--repair-replace .container > p {
    grid-column: 1 / -1;
}

.hales-city-v4--repair-replace .container > p {
    margin-bottom: 16px;
}

.hales-city-v4--repair-replace .container > h4:nth-of-type(1),
.hales-city-v4--repair-replace .container > ul:nth-of-type(1) {
    grid-column: 1;
}

.hales-city-v4--repair-replace .container > h4:nth-of-type(2),
.hales-city-v4--repair-replace .container > ul:nth-of-type(2) {
    grid-column: 2;
}

@media (max-width: 767px) {
    .hales-city-v4--repair-replace .container > h4:nth-of-type(2),
    .hales-city-v4--repair-replace .container > ul:nth-of-type(2) {
        grid-column: 1;
    }
}

.hales-city-v4--repair-replace .container > h4 {
    margin: 18px 0 0;
    padding: 14px 16px 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 14px 34px rgba(1, 22, 53, 0.08);
}

.hales-city-v4--repair-replace .container > h4 + ul {
    margin: 0 0 18px;
    padding: 10px 16px 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 34px rgba(1, 22, 53, 0.08);
    list-style: none !important;
}

.hales-city-v4--repair-replace .container > h4 + ul li {
    list-style: none !important;
    margin: 8px 0;
    position: relative;
    padding-left: 24px;
}

.hales-city-v4--repair-replace .container > h4 + ul li::marker {
    content: none !important;
    color: transparent;
}

.hales-city-v4--repair-replace .container > h4 + ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 900;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block;
    line-height: 1;
}

.hales-city-v4--emergency {
    /* Soft rose wash (matches reference screenshot) */
    /* Layered gradients so the section reads as an actual gradient (not a flat 2-tone block). */
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 226, 232, 0.55) 0%, rgba(255, 226, 232, 0) 60%),
        radial-gradient(circle at 62% 10%, rgba(255, 241, 214, 0.26) 0%, rgba(255, 241, 214, 0) 56%),
        linear-gradient(
            135deg,
            rgba(255, 226, 232, 0.52) 0%,
            rgba(255, 246, 248, 0.26) 28%,
            rgba(255, 255, 255, 0.98) 58%,
            rgba(255, 255, 255, 1) 100%
        );
}

.hales-city-v4--emergency::before {
    content: '';
    position: absolute;
    inset: -220px auto auto -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle at 60% 40%, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0));
    pointer-events: none;
}

.hales-city-v4--pricing {
    background: #fff;
}

/* -------------------------------------------------
   v4 section hierarchy polish
   ------------------------------------------------- */

.hales-city-v4 h2,
.hales-city-v4 h3 {
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    position: relative;
}

.hales-city-v4 h2::after,
.hales-city-v4 h3::after {
    content: '';
    display: block;
    width: 84px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0.10));
}

.hales-city-v4-blueprint .container > p {
    max-width: 78ch;
}

.hales-city-v4 .container > p {
    max-width: 74ch;
}

/* Pricing section */
.hales-city-v4--pricing .container {
    background: #fff;
}

.hales-city-v4--pricing .container > p {
    margin: 0;
}

.hales-city-v4--pricing .container > p + p {
    margin-top: 12px;
}

.hales-city-v4--pricing a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(1, 22, 53, 0.14);
    font-weight: 800;
    text-decoration: none;
    color: #011635;
}

.hales-city-v4--pricing a:hover {
    background: #fff;
    border-color: rgba(1, 22, 53, 0.22);
    transform: translateY(-1px);
}

.hales-city-v4--reviews {
    background: #f9fafb;
}

.hales-city-v4--faq {
    background: #f9fafb;
}

.hales-city-v4--related-services {
    background: #fff;
}

.hales-city-v4--technicians {
    background: #fff;
}

.hales-city-v4--comfort-tips {
    background: #f9fafb;
}

/* Comfort Tips: convert the Quick checklist UL into checkmark cards */
.hales-city-v4--comfort-tips h4 + ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 14px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 575px) {
    .hales-city-v4--comfort-tips h4 + ul {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4--comfort-tips h4 + ul li {
    list-style: none !important;
    margin: 0;
    position: relative;
    padding: 12px 12px 12px 40px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(1, 22, 53, 0.06);
}

.hales-city-v4--comfort-tips h4 + ul li::marker {
    content: none !important;
    color: transparent;
}

.hales-city-v4--comfort-tips h4 + ul li::before {
    content: '\2713';
    position: absolute;
    left: 14px;
    top: 12px;
    color: #d4af37;
    font-weight: 900;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block;
    line-height: 1;
}

.hales-city-v4--final-cta {
    background: #fff;
}

.hales-city-v4-intro {
    padding-top: 18px;
}

.hales-city-v4-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

@media (max-width: 991px) {
    .hales-city-v4-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 18px 48px rgba(1, 22, 53, 0.16);
}

.hales-city-v4-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 18px;
}

.hales-city-v4-proof {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.hales-city-v4-proof li {
    list-style: none !important;
}

.hales-city-v4-proof li::marker {
    content: none !important;
    color: transparent;
}

.hales-city-v4-proof li {
    list-style-type: none !important;
}

.hales-city-v4-proof li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
}

.hales-city-v4-proof li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #011635;
    font-weight: 800;
    /* Some global theme styles add a small colored dot to list-item ::before.
       Hard override here so our proof list is checkmarks only. */
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

.hales-city-v4-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

@media (max-width: 991px) {
    .hales-city-v4-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .hales-city-v4-service-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4-card {
    display: block;
    padding: 16px;
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
    transition: transform 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 8px 20px rgba(1, 22, 53, 0.06);
}

.hales-city-v4-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(1, 22, 53, 0.12);
}

.hales-city-v4-card h4 {
    margin: 0 0 6px;
    color: #011635;
    font-size: 17px;
    font-weight: 700;
}

.hales-city-v4-card p {
    margin: 0;
    color: #333;
}

.hales-city-v4-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.hales-city-v4-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(1, 22, 53, 0.06);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(1, 22, 53, 0.10);
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hales-city-v4-chip:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.22);
    transform: translateY(-1px);
}

.hales-city-v4-faqs {
    margin-top: 12px;
}

.hales-city-v4-accordion {
    margin-top: 12px;
}

.hales-city-v4-faq-item,
.hales-city-v4-accordion-item {
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 10px 0;
    background: #fff;
}

.hales-city-v4-faq-item summary,
.hales-city-v4-accordion-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hales-city-v4-faq-item summary::-webkit-details-marker,
.hales-city-v4-accordion-item summary::-webkit-details-marker {
    display: none;
}

.hales-city-v4-faq-item summary::after,
.hales-city-v4-accordion-item summary::after {
    content: '+';
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(1, 22, 53, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.hales-city-v4-faq-item[open] summary::after,
.hales-city-v4-accordion-item[open] summary::after {
    /* Use a real minus sign character so we don't render the literal string "u2013". */
    content: '−';
}

.hales-city-v4-faq-item p,
.hales-city-v4-accordion-item p {
    margin: 10px 0 0;
}

.hales-city-v4-accordion-content {
    margin-top: 10px;
}

/* v4 reviews */

.hales-city-v4-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

@media (max-width: 991px) {
    .hales-city-v4-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .hales-city-v4-review-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4-review {
    position: relative;
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 36px rgba(1, 22, 53, 0.10);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hales-city-v4-review__stars {
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 8px;
}

.hales-city-v4-review p {
    margin: 0;
    line-height: 1.45;
}

.hales-city-v4-review__name {
    font-weight: 800;
    margin-top: auto;
}

/* v4 offers callout */

.hales-city-v4-offers-card {
    position: relative;
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(1, 22, 53, 0.12);
    overflow: hidden;
}

.hales-city-v4-offers-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0));
    opacity: 0.9;
}

.hales-city-v4-offers-card > * {
    position: relative;
    z-index: 1;
}

.hales-city-v4-offers-card__head h3 {
    margin: 0 0 6px;
}

.hales-city-v4-offers-card__head p {
    margin: 0;
}

.hales-city-v4-offers-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hales-city-v4-offers-card__actions .btn {
    border-radius: 8px;
    font-weight: 900;
    padding: 12px 16px;
}

/* v4 coverage */

.hales-city-v4-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

@media (max-width: 767px) {
    .hales-city-v4-coverage-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v4-coverage-card {
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}

.hales-city-v4-coverage-card h4 {
    margin: 0 0 6px;
}

.hales-city-v4-coverage-card p {
    margin: 0;
}

/* ===================================
   v5 polish — kickers, sign cards,
   CTA rows, dark final CTA, proof grid
   =================================== */

/* Kicker text above headings */
.hales-city-v5-kicker {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 8px;
    line-height: 1;
}

.hales-city-v5-kicker--light {
    color: rgba(255, 255, 255, 0.9);
}

/* Proof list as 2-col grid cards */
.hales-city-v5-proof-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px !important;
}

@media (max-width: 575px) {
    .hales-city-v5-proof-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v5-proof-grid li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    padding: 12px 12px 12px 40px !important;
    box-shadow: 0 8px 24px rgba(1, 22, 53, 0.06);
    margin: 0 !important;
}

.hales-city-v5-proof-grid li::before {
    left: 14px !important;
    top: 12px !important;
    color: #d4af37 !important;
}

/* CTA button rows */
.hales-city-v5-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.hales-city-v5-cta-row .btn {
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hales-city-v5-cta-row .btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #FF6600) 0%, #E85A00 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(255, 90, 0, 0.35);
}

.hales-city-v5-cta-row .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(255, 90, 0, 0.45);
}

.hales-city-v5-cta-row .btn-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: #011635;
    border: 1px solid rgba(1, 22, 53, 0.18);
    box-shadow: 0 4px 12px rgba(1, 22, 53, 0.06);
}

.hales-city-v5-cta-row .btn-secondary:hover {
    background: #fff;
    border-color: rgba(1, 22, 53, 0.28);
    transform: translateY(-2px);
}

/* Signs / warning cards grid */
.hales-city-v5-signs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
}

@media (max-width: 575px) {
    .hales-city-v5-signs-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v5-sign-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 22, 53, 0.12);
    border-radius: 14px;
    padding: 14px 14px 14px 16px;
    box-shadow: 0 8px 24px rgba(1, 22, 53, 0.06);
    font-weight: 500;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hales-city-v5-sign-icon {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 1.45;
    opacity: 0.7;
}

/* ── v6 Signs / Warning section ─────────────────────────────── */
.hales-city-v6-signs {
    background: #f9fafb;
}

.hales-city-v6-signs-heading {
    position: relative;
    padding-bottom: 16px;
}

.hales-city-v6-signs-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #d4af37;
}

.hales-city-v6-signs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
}

@media (max-width: 575px) {
    .hales-city-v6-signs-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v6-sign-card {
    background: #fff;
    border: 1px solid rgba(1, 22, 53, 0.10);
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hales-city-v6-sign-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 16px rgba(4, 36, 82, 0.08);
}

.hales-city-v6-sign-icon {
    flex: 0 0 auto;
    font-size: 14px;
    color: #d4af37;
    opacity: 0.85;
}

/* ── v6 Process Timeline ───────────────────────────────────── */
.hales-city-v6-process {
    background: #fff;
}

.hales-city-v6-section-heading {
    position: relative;
    padding-bottom: 16px;
}

.hales-city-v6-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #d4af37;
}

.hales-city-v6-process-intro {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 32px;
}

.hales-city-v6-timeline {
    position: relative;
    padding-left: 40px;
}

/* Vertical connecting line */
.hales-city-v6-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, #d4af37 0%, #042452 100%);
    border-radius: 1px;
}

.hales-city-v6-timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    padding-bottom: 28px;
}

.hales-city-v6-timeline-item:last-child {
    padding-bottom: 0;
}

/* Numbered circle marker */
.hales-city-v6-timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    z-index: 2;
}

.hales-city-v6-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
    color: #011635;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Content card */
.hales-city-v6-timeline-content {
    background: #f9fafb;
    border: 1px solid rgba(1, 22, 53, 0.08);
    border-radius: 14px;
    padding: 20px 24px;
    flex: 1;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hales-city-v6-timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 24px rgba(4, 36, 82, 0.08);
    transform: translateY(-2px);
}

.hales-city-v6-step-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #011635;
}

.hales-city-v6-step-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* ── v6 Why Choose (dark section) ─────────────────────────── */
.hales-city-v6-why {
    background: linear-gradient(135deg, #011635 0%, #042452 50%, #011635 100%);
    color: #fff;
}

.hales-city-v6-why-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 8px;
}

.hales-city-v6-why-heading {
    color: #fff;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 12px;
}

.hales-city-v6-why-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d4af37, #f6e27f);
}

.hales-city-v6-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0;
}

@media (max-width: 575px) {
    .hales-city-v6-why-grid {
        grid-template-columns: 1fr;
    }
}

.hales-city-v6-why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hales-city-v6-why-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.hales-city-v6-why-icon {
    flex: 0 0 auto;
    font-size: 16px;
    color: #d4af37;
    line-height: 1.5;
}

/* Dark variant CTA buttons */
.hales-city-v6-cta-row--dark .btn-primary {
    background: var(--anniv-gradient-gold, linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%)) !important;
    color: var(--anniv-navy, #011635) !important;
}

.hales-city-v6-cta-row--dark .btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.hales-city-v6-cta-row--dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
}

/* Mobile: timeline adjustments */
@media (max-width: 575px) {
    .hales-city-v6-timeline {
        padding-left: 32px;
    }
    .hales-city-v6-timeline::before {
        left: 15px;
    }
    .hales-city-v6-timeline-marker {
        left: -32px;
    }
    .hales-city-v6-step-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .hales-city-v6-timeline-content {
        padding: 16px 18px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 Coverage / Service Area Section
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-coverage {
    background: linear-gradient(180deg, #f0f7fb 0%, #fff 100%);
}

.hales-city-v6-coverage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.hales-city-v6-stat-card {
    background: #fff;
    border: 1px solid rgba(1, 22, 53, 0.08);
    border-radius: 14px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hales-city-v6-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(1, 22, 53, 0.1);
}

.hales-city-v6-stat-icon {
    font-size: 28px;
    line-height: 1;
}

.hales-city-v6-stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4af37;
}

.hales-city-v6-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #011635;
}

@media (max-width: 767px) {
    .hales-city-v6-coverage-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .hales-city-v6-coverage-stats {
        grid-template-columns: 1fr;
    }
}

.hales-city-v6-neighborhoods {
    background: rgba(1, 22, 53, 0.03);
    border: 1px solid rgba(1, 22, 53, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.hales-city-v6-neighborhoods-title {
    margin: 0 0 14px;
    font-weight: 800;
    font-size: 18px;
    color: #011635;
}

.hales-city-v6-hood-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hales-city-v6-hood-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 700;
    font-size: 14px;
    color: #011635;
    transition: all 0.2s ease;
}

.hales-city-v6-hood-chip:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   v6 Climate / HVAC Considerations Section (dark navy)
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-climate {
    background: linear-gradient(135deg, #011635 0%, #042452 50%, #011635 100%);
    color: #fff;
}

.hales-city-v6-climate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.hales-city-v6-climate-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hales-city-v6-climate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.hales-city-v6-climate-card--wide {
    grid-column: 1 / -1;
}

.hales-city-v6-climate-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.hales-city-v6-climate-card h4 {
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #d4af37, #f6e27f) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hales-city-v6-climate-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: none;
}

@media (max-width: 767px) {
    .hales-city-v6-climate-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 Pricing Section (value cards)
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-pricing {
    background: #fff;
}

.hales-city-v6-pricing-intro {
    max-width: 65ch;
    font-size: 16px;
    line-height: 1.65;
    color: #333;
}

.hales-city-v6-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 28px 0;
}

.hales-city-v6-pricing-card {
    background: linear-gradient(145deg, #f8f9fb 0%, #fff 100%);
    border: 1px solid rgba(1, 22, 53, 0.08);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.hales-city-v6-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hales-city-v6-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(1, 22, 53, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.hales-city-v6-pricing-card:hover::before {
    opacity: 1;
}

.hales-city-v6-pricing-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 14px;
}

.hales-city-v6-pricing-card h4 {
    color: #011635 !important;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.hales-city-v6-pricing-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: none;
}

.hales-city-v6-pricing-ctas {
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hales-city-v6-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .hales-city-v6-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 FAQ Section
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-faq {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hales-city-v6-faq-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hales-city-v6-faq-item {
    border: 1px solid rgba(1, 22, 53, 0.08);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hales-city-v6-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 6px 20px rgba(1, 22, 53, 0.06);
}

.hales-city-v6-faq-item[open] {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 24px rgba(1, 22, 53, 0.08);
}

.hales-city-v6-faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 16px;
    color: #011635;
    transition: background 0.2s ease;
}

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

.hales-city-v6-faq-item summary:hover {
    background: rgba(1, 22, 53, 0.02);
}

.hales-city-v6-faq-num {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #011635, #042452);
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hales-city-v6-faq-q {
    flex: 1 1 auto;
}

.hales-city-v6-faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
    color: #011635;
    font-size: 18px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.hales-city-v6-faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.hales-city-v6-faq-answer {
    padding: 0 22px 20px 70px;
}

.hales-city-v6-faq-answer p {
    color: #444 !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 575px) {
    .hales-city-v6-faq-item summary {
        padding: 14px 16px;
        gap: 12px;
        font-size: 15px;
    }
    .hales-city-v6-faq-answer {
        padding: 0 16px 16px 60px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 Related Services Section
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-related {
    background: linear-gradient(135deg, #011635 0%, #042452 50%, #011635 100%);
    color: #fff;
}

.hales-city-v6-related h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.hales-city-v6-related h2::after {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.05)) !important;
}

.hales-city-v6-related-intro {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 60ch;
}

.hales-city-v6-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

/* Hide wpautop <br> injected between grid/flex children */
.hales-city-v6-related-grid > br,
.hales-city-v6-hood-chips > br,
.hales-city-v6-cta-row > br,
.hales-city-v6-faq-list > br,
.hales-city-v6-coverage-stats > br,
.hales-city-v6-climate-grid > br,
.hales-city-v6-pricing-grid > br,
.hales-city-v6-signs-grid > br {
    display: none;
}

.hales-city-v6-related-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hales-city-v6-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.hales-city-v6-related-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.hales-city-v6-related-name {
    display: block;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 17px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    margin: 0 0 8px;
}

.hales-city-v6-related-tagline {
    display: block;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 auto;
}

.hales-city-v6-related-arrow {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    transition: color 0.2s ease;
}

.hales-city-v6-related-card:hover .hales-city-v6-related-arrow {
    color: #f6e27f;
}

@media (max-width: 991px) {
    .hales-city-v6-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hales-city-v6-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Related services — card link style (legacy) */
.hales-city-v5-service-link {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
}

.hales-city-v5-learn-more {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    margin-top: auto;
}

.hales-city-v5-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    margin-top: 8px;
}

.hales-city-v5-back-link:hover {
    text-decoration: underline;
}

/* Dark final CTA */
.hales-city-v5-dark-cta {
    background: linear-gradient(135deg, #0D2B3B 0%, #153C52 50%, #0B2533 100%) !important;
    color: #fff;
}

.hales-city-v5-dark-cta h2 {
    color: #fff;
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hales-city-v5-dark-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.05));
}

.hales-city-v5-dark-cta p {
    color: #fff;
    max-width: 60ch;
    font-size: 18px;
    line-height: 1.6;
}

.hales-city-v5-dark-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #FF6600) 0%, #E85A00 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(255, 90, 0, 0.4);
}

.hales-city-v5-dark-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hales-city-v5-dark-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   v6 Final CTA Section
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-final-cta {
    background: linear-gradient(135deg, #011635 0%, #042452 50%, #011635 100%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hales-city-v6-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
}

.hales-city-v6-final-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hales-city-v6-final-cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    color: #f6e27f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.hales-city-v6-final-cta h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 14px;
}

.hales-city-v6-final-cta h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f6e27f);
    margin: 16px auto 0;
    border-radius: 3px;
}

.hales-city-v6-final-cta-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 55ch;
}

.hales-city-v6-final-cta-proof {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hales-city-v6-final-cta-proof > br {
    display: none;
}

.hales-city-v6-final-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    min-width: 140px;
}

.hales-city-v6-stat-num {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #f6e27f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hales-city-v6-final-cta .hales-city-v6-cta-row {
    justify-content: center;
}

@media (max-width: 575px) {
    .hales-city-v6-final-cta h2 {
        font-size: 24px;
    }
    .hales-city-v6-final-cta-proof {
        gap: 12px;
    }
    .hales-city-v6-final-cta-stat {
        min-width: 110px;
        padding: 10px 14px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 Internal Links Section
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-internal-links {
    margin: 0;
    padding: 48px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-radius: 0;
    border-left: none;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%) 1;
}

.hales-city-v6-il-section {
    margin-bottom: 28px;
}

.hales-city-v6-il-section:last-child {
    margin-bottom: 0;
}

.hales-city-v6-il-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #011635;
    margin-bottom: 8px;
}

.hales-city-v6-internal-links h3 {
    color: #011635 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin: 0 0 16px !important;
    -webkit-text-fill-color: #011635 !important;
    background: none !important;
}

.hales-city-v6-internal-links h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f6e27f);
    margin-top: 10px;
    border-radius: 3px;
}

.hales-city-v6-il-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hales-city-v6-il-chips > br {
    display: none;
}

.hales-city-v6-il-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fff !important;
    color: #011635 !important;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(1, 22, 53, 0.10);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hales-city-v6-il-chip:hover {
    background: linear-gradient(135deg, #011635, #042452) !important;
    color: #fff !important;
    border-color: #011635;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 22, 53, 0.18);
}

.hales-city-v6-il-chip--city {
    background: rgba(1, 22, 53, 0.04) !important;
    border-color: rgba(1, 22, 53, 0.12);
}

.hales-city-v6-il-chip--city:hover {
    background: linear-gradient(135deg, #d4af37, #f6e27f) !important;
    color: #011635 !important;
    border-color: #d4af37;
}

@media (max-width: 575px) {
    .hales-city-v6-internal-links {
        padding: 32px 20px;
    }
    .hales-city-v6-il-chip {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v6 Internal Links Wrapper (centering fix)
   ═══════════════════════════════════════════════════════════════ */
.hales-city-v6-internal-links-wrap {
    margin: 0;
    padding: 0;
}
.hales-city-v6-internal-links-wrap > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   v6 Booking CTA Section – Light Theme with Two-Column Layout
   ═══════════════════════════════════════════════════════════════ */
.hales-v6-booking-cta {
    position: relative;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8edf3 100%);
    padding: 0 0 56px;
    overflow: hidden;
}
.hales-v6-booking-cta__stripe {
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
}
.hales-v6-booking-cta .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.hales-v6-booking-cta__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding: 48px 0 0;
}
.hales-v6-booking-cta__inner {
    text-align: left;
    padding: 0;
}
.hales-v6-booking-cta__badge {
    display: inline-block;
    background: rgba(1,22,53,0.06);
    color: #011635;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid rgba(1,22,53,0.12);
    margin-bottom: 20px;
}
.hales-v6-booking-cta__title {
    font-size: 36px;
    font-weight: 800;
    color: #011635;
    margin: 0 0 12px;
    line-height: 1.15;
}
.hales-v6-booking-cta__desc {
    font-size: 17px;
    color: #4a5568;
    margin: 0 0 24px;
    line-height: 1.6;
}
.hales-v6-booking-cta__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hales-v6-booking-cta__trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    background: #fff;
    border: 1px solid rgba(1,22,53,0.12);
    border-radius: 999px;
    padding: 7px 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
a.hales-v6-booking-cta__trust-pill:hover {
    background: #f7f9fb;
    border-color: #d4af37;
    color: #011635;
}
.hales-v6-booking-cta__trust-pill span {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: -1px;
}
.hales-v6-booking-cta__trust-pill strong {
    color: #011635;
    font-weight: 700;
}
.hales-v6-booking-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hales-v6-booking-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.hales-v6-booking-cta__btn:hover {
    transform: translateY(-2px);
}
.hales-v6-booking-cta__btn--gold {
    background: linear-gradient(135deg, #d4af37 0%, #f6e27f 50%, #d4af37 100%);
    color: #011635;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.hales-v6-booking-cta__btn--gold:hover {
    box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}
.hales-v6-booking-cta__btn--navy {
    background: #011635;
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(1,22,53,0.25);
}
.hales-v6-booking-cta__btn--navy:hover {
    background: #042452;
    box-shadow: 0 6px 24px rgba(1,22,53,0.35);
    color: #fff;
}
.hales-v6-booking-cta__club {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}
.hales-v6-booking-cta__club:hover {
    color: #d4af37;
}

/* Google Review Card (right column) */
.hales-v6-booking-cta__review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(1,22,53,0.08);
    text-align: center;
}
.hales-v6-booking-cta__review-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.hales-v6-booking-cta__review-logo svg {
    flex-shrink: 0;
}
.hales-v6-booking-cta__review-logo span {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
}
.hales-v6-booking-cta__review-rating {
    font-size: 48px;
    font-weight: 800;
    color: #011635;
    line-height: 1.1;
    margin-bottom: 6px;
}
.hales-v6-booking-cta__review-stars {
    color: #d4af37;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.hales-v6-booking-cta__review-count {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}
.hales-v6-booking-cta__review-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #011635;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(1,22,53,0.15);
    transition: all 0.2s;
}
.hales-v6-booking-cta__review-link:hover {
    background: #011635;
    color: #fff;
    border-color: #011635;
}

@media (max-width: 991px) {
    .hales-v6-booking-cta__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hales-v6-booking-cta__inner { text-align: center; }
    .hales-v6-booking-cta__trust { justify-content: center; }
    .hales-v6-booking-cta__actions { justify-content: center; }
}
@media (max-width: 767px) {
    .hales-v6-booking-cta { padding: 0 0 36px; }
    .hales-v6-booking-cta__grid { padding: 32px 0 0; gap: 24px; }
    .hales-v6-booking-cta__title { font-size: 26px; }
    .hales-v6-booking-cta__desc { font-size: 15px; }
    .hales-v6-booking-cta__trust { gap: 8px; }
    .hales-v6-booking-cta__trust-pill { font-size: 12px; padding: 5px 10px; }
    .hales-v6-booking-cta__actions { flex-direction: column; gap: 10px; }
    .hales-v6-booking-cta__btn { width: 100%; justify-content: center; padding: 14px 24px; }
    .hales-v6-booking-cta__review-card { padding: 24px 20px; }
    .hales-v6-booking-cta__review-rating { font-size: 40px; }
}