/* Fox Mowing NSW — Location Page styles
   Identical on every location page. Option B: load this once (theme stylesheet
   or one include) and let each page carry only the .fox-location-template markup,
   instead of repeating the inline <style> in every template. */

.fox-location-template {
        --color-primary: #c8ec16;
        --color-primary-dark: #9fc100;
        --color-dark: #111111;
        --color-ink: #202020;
        --color-body: #5f6470;
        --color-surface: #f6f8ef;
        --color-white: #ffffff;
        --color-border: #e6ead8;
        --shadow-soft: 0 18px 48px rgba(17, 17, 17, 0.10);
        --shadow-card: 0 14px 36px rgba(17, 17, 17, 0.08);
        --radius-sm: 12px;
        --radius-md: 18px;
        --radius-lg: 28px;
        --content-width: 1180px;
        --wide-width: 1280px;
        --space-xs: 0.75rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 5.5rem;
        font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--color-body);
        background: var(--color-white);
        overflow: hidden;
    }

    .fox-location-template *,
    .fox-location-template *::before,
    .fox-location-template *::after {
        box-sizing: border-box;
    }

    .fox-location-template h1,
    .fox-location-template h2,
    .fox-location-template h3 {
        font-family: Montserrat, Inter, system-ui, sans-serif;
        color: var(--color-dark);
        line-height: 1.1;
        letter-spacing: -0.035em;
        margin: 0 0 1rem;
    }

    .fox-location-template h1 {
        max-width: 980px;
        font-size: clamp(2.55rem, 7vw, 5.25rem);
        font-weight: 800;
        color: var(--color-white);
        text-wrap: balance;
    }

    .fox-location-template h1 span,
    .fox-location-template h2 span {
        color: var(--color-primary);
    }

    .fox-location-template h2 {
        font-size: clamp(2rem, 4vw, 3.5rem) !important;
        font-weight: 800;
        text-wrap: balance;
    }

    .fox-location-template h3 {
        font-size: clamp(1.18rem, 2vw, 1.55rem) !important;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .fox-location-template p {
        font-size: 1.03rem;
        line-height: 1.78;
        margin: 0 0 1.15rem;
        color: var(--color-body);
    }

    .fox-location-template a {
        color: inherit;
        text-decoration: none;
    }

    .fox-location-template svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .fox-location-template .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0.85rem 1.65rem;
        border: 2px solid transparent;
        border-radius: 999px;
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 0.93rem;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        cursor: pointer;
    }

    .fox-location-template .btn:hover,
    .fox-location-template .btn:focus {
        transform: translateY(-2px);
        text-decoration: none;
    }

    .fox-location-template .btn--primary {
        background: var(--color-primary);
        color: var(--color-dark);
        box-shadow: 0 12px 30px rgba(200, 236, 22, 0.32);
    }

    .fox-location-template .btn--primary:hover,
    .fox-location-template .btn--primary:focus {
        background: #d9fb25;
        color: var(--color-dark);
    }

    .fox-location-template .btn--secondary {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.65);
        color: var(--color-white);
        backdrop-filter: blur(8px);
    }

    .fox-location-template .btn--secondary:hover,
    .fox-location-template .btn--secondary:focus {
        background: var(--color-white);
        color: var(--color-dark);
    }

    .fox-location-template .btn--dark {
        background: var(--color-dark);
        color: var(--color-white);
    }

    .fox-location-template .btn--outline {
        background: transparent;
        border-color: var(--color-dark);
        color: var(--color-dark);
    }

    .fox-location-template .btn--lg {
        min-height: 56px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .fox-location-template .btn--pulse {
        animation: foxPulse 2.5s ease-in-out infinite;
    }

    @keyframes foxPulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(200, 236, 22, 0.42); }
        50% { box-shadow: 0 0 0 14px rgba(200, 236, 22, 0); }
    }

    .fox-location-template .hero-inner {
        position: relative;
        min-height: clamp(620px, 78vh, 820px);
        display: flex;
        align-items: center;
        isolation: isolate;
        overflow: hidden;
        background: var(--color-dark);
    }

    .fox-location-template .hero-inner-bg {
        position: absolute;
        inset: 0;
        z-index: -3;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
    }

    .fox-location-template .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: -2;
        background:
            radial-gradient(circle at 20% 20%, rgba(200, 236, 22, 0.22), transparent 36%),
            linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.78) 44%, rgba(17, 17, 17, 0.34) 100%);
    }

    .fox-location-template .hero-content {
        width: min(100% - 2rem, var(--wide-width));
        margin: 0 auto;
        padding: 6rem 0 5rem;
        color: var(--color-white);
    }

    .fox-location-template .breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        align-items: center;
        margin-bottom: 1.25rem;
        font-size: 0.92rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.76);
    }

    .fox-location-template .breadcrumbs a {
        color: var(--color-primary);
    }

    .fox-location-template .breadcrumbs .separator {
        color: rgba(255, 255, 255, 0.55);
    }

    .fox-location-template .hero-subtitle {
        max-width: 760px;
        margin-bottom: 2rem;
        font-size: clamp(1.08rem, 1.8vw, 1.35rem);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }

    .fox-location-template .hero-ctas,
    .fox-location-template .cta-banner-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
    }

    .fox-location-template .hero-social-proof {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1.5rem;
        padding: 0.85rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-white);
        backdrop-filter: blur(8px);
        font-weight: 700;
    }

    .fox-location-template .hero-social-proof .stars,
    .fox-location-template .fox-review-stars {
        color: var(--color-primary);
        letter-spacing: 0.08em;
    }

    .fox-location-template .trust-strip {
        position: relative;
        z-index: 3;
        width: min(100% - 2rem, var(--wide-width));
        margin: -54px auto var(--space-xl);
    }

    .fox-location-template .trust-strip-inner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        overflow: hidden;
        border-radius: var(--radius-lg);
        background: rgba(17, 17, 17, 0.12);
        box-shadow: var(--shadow-soft);
    }

    .fox-location-template .trust-item {
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem;
        background: var(--color-white);
    }

    .fox-location-template .trust-icon,
    .fox-location-template .feature-icon,
    .fox-location-template .service-list-icon {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: var(--color-primary);
        color: var(--color-dark);
    }

    .fox-location-template .trust-text strong {
        display: block;
        margin-bottom: 0.22rem;
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 1rem;
        font-weight: 800;
    }

    .fox-location-template .trust-text span {
        display: block;
        color: var(--color-body);
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .fox-location-template .section {
        position: relative;
        padding: var(--space-2xl) 1rem;
    }

    .fox-location-template .section--surface {
        background: var(--color-surface);
    }

    .fox-location-template .section--dark {
        background: var(--color-dark);
        color: var(--color-white);
    }

    .fox-location-template .section--dark h2,
    .fox-location-template .section--dark h3,
    .fox-location-template .section--dark p {
        color: var(--color-white);
    }

    .fox-location-template .section-header {
        width: min(100%, var(--content-width));
        margin: 0 auto var(--space-lg);
        text-align: center;
    }

    .fox-location-template .section-header p {
        max-width: 820px;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.08rem;
    }

    .fox-location-template .eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        padding: 0.48rem 0.9rem;
        border-radius: 999px;
        background: var(--color-primary);
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .fox-location-template .about-split {
        display: grid;
        width: min(100%, var(--content-width));
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4rem);
        align-items: center;
    }

    .fox-location-template .about-image {
        position: relative;
        min-height: 420px;
        overflow: hidden;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        background: linear-gradient(135deg, var(--color-dark), #4c5d14);
    }

    .fox-location-template .about-image img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        display: block;
    }

    .fox-location-template .about-image::after {
        content: "";
        position: absolute;
        inset: auto 1.35rem 1.35rem auto;
        width: 94px;
        height: 94px;
        border-radius: 999px;
        background: var(--color-primary);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }

    .fox-location-template .about-text .btn {
        margin-top: 0.35rem;
    }

    .fox-location-template .quote-panel {
        width: min(100%, var(--content-width));
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
        gap: clamp(1.5rem, 4vw, 3rem);
        align-items: stretch;
    }

    .fox-location-template .quote-copy,
    .fox-location-template .quote-form-card,
    .fox-location-template .feature-card,
    .fox-location-template .area-card,
    .fox-location-template .fox-review-card,
    .fox-location-template .service-list-item {
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-white);
        box-shadow: var(--shadow-card);
    }

    .fox-location-template .quote-copy {
        padding: clamp(1.75rem, 4vw, 3rem);
        background: var(--color-dark);
    }

    .fox-location-template .quote-copy h2,
    .fox-location-template .quote-copy p {
        color: var(--color-white);
    }

    .fox-location-template .quote-copy p {
        color: rgba(255, 255, 255, 0.82);
    }

    .fox-location-template .quote-form-card {
        padding: clamp(1.4rem, 3vw, 2rem);
    }

    .fox-location-template .quote-form-card h2 {
        font-size: clamp(1.6rem, 3vw, 2.25rem);
    }

    .fox-location-template .quote-form-card .gform_wrapper,
    .fox-location-template .quote-form-card form,
    .fox-location-template .quote-form-card .gform_body,
    .fox-location-template .quote-form-card .gform_fields,
    .fox-location-template .quote-form-card .gfield,
    .fox-location-template .quote-form-card .ginput_container {
        width: 100% !important;
        max-width: none !important;
    }

    .fox-location-template .quote-form-card .gform_fields,
    .fox-location-template .quote-form-card .gform_fields li {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .fox-location-template .quote-form-card .gfield,
    .fox-location-template .quote-form-card .gform_footer,
    .fox-location-template .quote-form-card .gform_page_footer {
        display: block !important;
        margin: 0 0 1rem !important;
        padding: 0 !important;
    }

    .fox-location-template .quote-form-card input[type="text"],
    .fox-location-template .quote-form-card input[type="email"],
    .fox-location-template .quote-form-card input[type="tel"],
    .fox-location-template .quote-form-card input[type="number"],
    .fox-location-template .quote-form-card select,
    .fox-location-template .quote-form-card textarea {
        width: 100% !important;
        min-height: 48px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        padding: 0.8rem 0.95rem !important;
        font: inherit;
        color: var(--color-dark);
        background: #fbfcf6;
    }

    .fox-location-template .quote-form-card textarea {
        min-height: 120px;
    }

    .fox-location-template .quote-form-card input[type="submit"],
    .fox-location-template .quote-form-card button[type="submit"] {
        width: 100% !important;
        min-height: 52px;
        border: 0;
        border-radius: 999px;
        background: var(--color-primary);
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-weight: 800;
        cursor: pointer;
    }

    .fox-location-template .features-grid,
    .fox-location-template .area-grid,
    .fox-location-template .services-list-grid {
        display: grid;
        width: min(100%, var(--content-width));
        margin: 0 auto;
        gap: 1.35rem;
    }

    .fox-location-template .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fox-location-template .feature-card {
        position: relative;
        padding: 2rem;
        overflow: hidden;
    }

    .fox-location-template .feature-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 5px;
        background: var(--color-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .fox-location-template .feature-card:hover::before,
    .fox-location-template .feature-card--accent::before {
        transform: scaleX(1);
    }

    .fox-location-template .feature-icon {
        margin-bottom: 1.2rem;
    }

    .fox-location-template .stats-grid {
        display: grid;
        width: min(100%, var(--content-width));
        margin: 0 auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
        text-align: center;
    }

    .fox-location-template .stat-item {
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
    }

    .fox-location-template .stat-number {
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.2rem);
        font-weight: 800;
        line-height: 1;
        color: var(--color-primary);
    }

    .fox-location-template .stat-label {
        margin-top: 0.55rem;
        color: rgba(255, 255, 255, 0.82);
        font-weight: 700;
    }

    .fox-location-template .area-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fox-location-template .area-card {
        padding: 1.55rem;
    }

    .fox-location-template .area-card h3 {
        font-size: 1.12rem;
    }

    .fox-location-template .area-card p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .fox-location-template .services-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fox-location-template .service-list-item {
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 1rem 1.15rem;
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-weight: 800;
    }

    .fox-location-template .service-list-icon {
        width: 38px;
        height: 38px;
    }

    .fox-location-template .fox-reviews-wrap {
        position: relative;
        width: min(100%, var(--content-width));
        margin: 0 auto;
    }

    .fox-location-template .fox-reviews-grid {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(4, minmax(240px, 1fr));
        gap: 1.35rem;
        align-items: stretch;
    }

    .fox-location-template .fox-review-card {
        position: relative;
        display: flex;
        min-width: 0;
        min-height: 100%;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem;
        box-sizing: border-box;
        text-align: left;
    }

    .fox-location-template .fox-review-quote-mark {
        position: absolute;
        right: 1.25rem;
        top: 0.6rem;
        color: rgba(200, 236, 22, 0.55);
        font-size: 5rem;
        font-family: Georgia, serif;
        line-height: 1;
        pointer-events: none;
    }

    .fox-location-template .fox-review-card blockquote {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: none;
        margin: 0 0 1.35rem;
        color: var(--color-body);
        font-size: 1rem;
        font-style: normal;
        line-height: 1.65;
        text-align: left;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .fox-location-template .fox-review-author {
        color: var(--color-dark);
        font-weight: 800;
    }



    .fox-location-template .pricing-wrap {
        display: grid;
        width: min(100%, var(--content-width));
        margin: 0 auto;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
        gap: 1.35rem;
        align-items: stretch;
    }

    .fox-location-template .pricing-table-card,
    .fox-location-template .pricing-proof-card {
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-white);
        box-shadow: var(--shadow-card);
        overflow: hidden;
    }

    .fox-location-template .pricing-table-card {
        padding: clamp(1.25rem, 3vw, 2rem);
    }

    .fox-location-template .pricing-proof-card {
        padding: clamp(1.35rem, 3vw, 2rem);
    }

    .fox-location-template .pricing-table-scroll {
        width: 100%;
        overflow-x: auto;
    }

    .fox-location-template .pricing-table {
        width: 100%;
        border-collapse: collapse;
        color: var(--color-body);
        font-size: 0.98rem;
    }

    .fox-location-template .pricing-table th,
    .fox-location-template .pricing-table td {
        padding: 1rem 0.85rem;
        border-bottom: 1px solid var(--color-border);
        text-align: left;
        vertical-align: top;
    }

    .fox-location-template .pricing-table th {
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 0.86rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        background: #fbfcf6;
    }

    .fox-location-template .pricing-table td:first-child,
    .fox-location-template .pricing-table td:nth-child(2) {
        color: var(--color-dark);
        font-weight: 800;
    }

    .fox-location-template .pricing-note {
        margin: 1.1rem 0 0;
        padding: 1rem;
        border-left: 4px solid var(--color-primary);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        background: #fbfcf6;
        font-size: 0.95rem;
    }

    .fox-location-template .pricing-proof-list {
        display: grid;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .fox-location-template .pricing-proof-item {
        display: flex;
        gap: 0.8rem;
        align-items: flex-start;
        padding: 0.9rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        background: #fbfcf6;
    }

    .fox-location-template .pricing-proof-item strong {
        display: block;
        margin-bottom: 0.16rem;
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 0.96rem;
        font-weight: 800;
    }

    .fox-location-template .pricing-proof-item span {
        /*display: block;*/
        color: var(--color-body);
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .fox-location-template .pricing-check {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: var(--color-primary);
        color: var(--color-dark);
        font-family: Montserrat, Inter, system-ui, sans-serif;
        font-size: 0.88rem;
        font-weight: 900;
    }

    .fox-location-template .faq-list {
        width: min(100%, 980px);
        margin: 0 auto;
    }

    .fox-location-template .faq-item {
        padding: 1.35rem 1.55rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-white);
        box-shadow: 0 10px 24px rgba(17, 17, 17, 0.045);
    }

    .fox-location-template .faq-item + .faq-item {
        margin-top: 1rem;
    }

    .fox-location-template .faq-item h3 {
        margin-bottom: 0.55rem;
        font-size: 1.12rem;
    }

    .fox-location-template .faq-item p {
        margin-bottom: 0;
    }

    .fox-location-template .cta-banner {
        padding: var(--space-2xl) 1rem;
        text-align: center;
        background: var(--color-primary);
        color: var(--color-dark);
    }

    .fox-location-template .cta-banner h2,
    .fox-location-template .cta-banner p {
        color: var(--color-dark);
    }

    .fox-location-template .cta-banner h2 {
        max-width: 940px;
        margin-right: auto;
        margin-left: auto;
    }

    .fox-location-template .cta-banner p {
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
    }

    .fox-location-template .cta-banner-buttons {
        justify-content: center;
        margin-top: 1.65rem;
    }

    .fox-location-template .cta-banner .btn--outline {
        border-color: var(--color-dark);
        color: var(--color-dark);
    }

    .fox-location-template .sticky-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: none;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -8px 28px rgba(17, 17, 17, 0.14);
        backdrop-filter: blur(10px);
    }

    .fox-location-template .sticky-cta-inner {
        display: grid;
        max-width: 520px;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }

    .fox-location-template .sticky-cta .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .fox-location-template .sticky-cta .btn--secondary {
        border-color: var(--color-primary);
        color: var(--color-dark);
        background: var(--color-white);
    }

    .fox-location-template .reveal {
        opacity: 1;
        transform: none;
    }



    .fox-location-template .business-hours {
        margin-top: 1.65rem;
        padding: 1.35rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.06);
    }

    .fox-location-template .business-hours h3 {
        margin-bottom: 0.85rem;
        color: var(--color-primary);
        font-size: 1.15rem;
    }

    .fox-location-template .business-hours-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .fox-location-template .business-hours-list li {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.88);
        font-weight: 700;
    }

    .fox-location-template .business-hours-list li:last-child {
        border-bottom: 0;
    }

    .fox-location-template .business-hours-list span:last-child {
        text-align: right;
        color: var(--color-white);
    }

    .fox-location-template .fox-review-author-row {
        position: relative;
        z-index: 1;
        display: flex;
        width: 100%;
        min-width: 0;
        gap: 0.9rem;
        align-items: center;
        margin-top: auto;
    }

    .fox-location-template .fox-review-avatar {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
        overflow: hidden;
        border: 3px solid var(--color-primary);
        border-radius: 999px;
        background: var(--color-surface);
        box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
    }

    .fox-location-template .fox-review-avatar img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fox-location-template .fox-review-meta {
        min-width: 0;
    }

    .fox-location-template .fox-review-meta h3 {
        margin-bottom: 0.2rem;
        color: var(--color-dark);
        font-size: 1.05rem;
        letter-spacing: -0.01em;
        white-space: normal;
    }

    .fox-location-template .fox-review-location {
        display: block;
        margin-bottom: 0.15rem;
        color: var(--color-body);
        font-size: 0.9rem;
        font-weight: 700;
    }

    @media (max-width: 1100px) {
        .fox-location-template .features-grid,
        .fox-location-template .area-grid,
        .fox-location-template .services-list-grid,
        .fox-location-template .fox-reviews-grid {
            grid-template-columns: repeat(2, minmax(240px, 1fr));
        }

        .fox-location-template .quote-panel {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 820px) {
        .fox-location-template .hero-inner {
            min-height: 650px;
        }

        .fox-location-template .hero-content {
            padding: 4.5rem 0 4rem;
        }

        .fox-location-template .trust-strip {
            margin-top: -32px;
        }

        .fox-location-template .trust-strip-inner,
        .fox-location-template .about-split,
        .fox-location-template .features-grid,
        .fox-location-template .area-grid,
        .fox-location-template .services-list-grid,
        .fox-location-template .fox-reviews-grid,
        .fox-location-template .stats-grid {
            grid-template-columns: 1fr;
        }

        .fox-location-template .section {
            padding: 3.75rem 1rem;
        }

        .fox-location-template .about-image,
        .fox-location-template .about-image img {
            min-height: 300px;
        }

        .fox-location-template .hero-ctas,
        .fox-location-template .cta-banner-buttons {
            align-items: stretch;
            flex-direction: column;
        }

        .fox-location-template .hero-ctas .btn,
        .fox-location-template .cta-banner-buttons .btn {
            width: 100%;
        }

        .fox-location-template .sticky-cta {
            display: block;
        }
    }
    
    
    
    
  @media (max-width: 768px) {  
    .fox-location-template .fox-reviews-grid {
        grid-template-columns: 1fr !important; /* single column on phones */
      }
      .fox-location-template .pricing-wrap {
        grid-template-columns: 1fr; /* stack cards vertically */
      }
   } 

 .about-image::after{display: none;}