﻿:root {
    --primary:       #0891B2;
    --primary-dark:  #0E7490;
    --primary-light: #ECFEFF;
    --cta:           #22C55E;
    --cta-dark:      #16A34A;
    --text:          #164E63;
    --text-body:     #334155;
    --text-muted:    #64748B;
    --text-hint:     #94A3B8;
    --border:        #E2E8F0;
    --border-light:  #F1F5F9;
    --bg:            #F8FAFA;
    --white:         #fff;
    --radius:        10px;
    --radius-lg:     16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    min-height: 100vh;
}

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section--no-pt { padding-top: 0; }

/* Full-width wrap inside sections on all inner pages (excludes homepage) */
main.site-content section .wrap { width: 100%; }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--primary); color: #fff;
    font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 700;
    padding: 13px 28px; border-radius: 10px; border: none;
    cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-outline {
    background: var(--white); color: var(--primary);
    font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 700;
    padding: 12px 28px; border-radius: 10px; border: 1.5px solid var(--primary);
    cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--primary-light); color: var(--primary); }

.btn-cta-green {
    background: var(--cta); color: #fff;
    font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 700;
    padding: 13px 28px; border-radius: 10px; border: none;
    cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-cta-green:hover { background: var(--cta-dark); color: #fff; }

/* ── SECTION HEADERS ── */
.section-hd { margin-bottom: 2rem; }
.section-hd .label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--primary); margin-bottom: .5rem;
}
.section-hd h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(20px, 3vw, 28px);
    font-weight: 700; color: var(--text); margin-bottom: .4rem;
}
.section-hd p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 1.25rem 0;
}
.trust-bar-inner {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text-muted);
}

/* ── STEPS ── */
.steps-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 2rem;
}
.step-card {
    background: var(--white); border: 0.5px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; text-align: center;
}
.step-card-img { width: 100%; height: 160px; overflow: hidden; }
.step-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.step-card:hover .step-card-img img { transform: scale(1.04); }
.step-card .step-num { margin-top: 1.25rem; }
.step-card h3, .step-card p { padding: 0 1.25rem; }
.step-card p { padding-bottom: 1.25rem; }
.step-num {
    width: 40px; height: 40px; background: var(--primary-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem;
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--primary);
}
.step-card h3 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── AREA CHIPS ── */
.area-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px; margin-top: 1.5rem;
}
.area-chip {
    background: var(--white); border: 0.5px solid var(--border); border-radius: 8px;
    padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--text-body);
    text-align: center; cursor: pointer; transition: all .2s;
}
.area-chip:hover { border-color: var(--primary); color: var(--primary); }
.area-chip.featured { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* ── SERVICE AREAS (tabbed accordion) ── */
.sa-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 2rem 0 1.5rem; }
.sa-tab {
    padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--border);
    background: var(--white); color: var(--text-body); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .2s;
}
.sa-tab:hover { border-color: var(--primary); color: var(--primary); }
.sa-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.sa-accordions { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.sa-region { border-bottom: 1px solid var(--border); }
.sa-region:last-child { border-bottom: none; }

.sa-region-hd {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; background: none; border: none; cursor: pointer;
    font-family: inherit; text-align: left; transition: background .15s;
}
.sa-region-hd:hover { background: var(--border-light); }
.sa-region.open > .sa-region-hd { background: var(--border-light); }

.sa-region-name { font-size: 17px; font-weight: 700; color: var(--text); }
.sa-region-right { display: flex; align-items: center; gap: 12px; }
.sa-badge {
    font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
    background: var(--primary-light); color: var(--primary);
}
.sa-chevron { color: var(--text-muted); flex-shrink: 0; transition: transform .2s; }
.sa-region.open .sa-chevron { transform: rotate(180deg); }

.sa-region-body { padding: 0 24px 20px; }
.sa-suburb-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.sa-suburb {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border);
    font-size: 13px; font-weight: 500; color: var(--text-body);
    text-decoration: none; transition: all .2s; cursor: pointer;
}
.sa-suburb:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.sa-suburb svg { flex-shrink: 0; opacity: .5; }
.sa-suburb:hover svg { opacity: 1; }

.sa-not-found {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    margin-top: 1.5rem; padding: 20px 24px; border-radius: 12px;
    background: var(--border-light); border: 1px solid var(--border);
}
.sa-not-found-left { display: flex; align-items: center; gap: 16px; }
.sa-not-found-left strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.sa-not-found-left p { font-size: 13px; color: var(--text-muted); margin: 0; }

.sa-trust {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1.5rem;
}
.sa-trust-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; border-radius: 10px; border: 1px solid var(--border); background: var(--white);
}
.sa-trust-item strong { display: block; font-size: 14px; color: var(--text); }
.sa-trust-item span { font-size: 12px; color: var(--text-muted); }

@media(max-width: 768px) {
    .sa-suburb-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-trust { grid-template-columns: 1fr; }
    .sa-not-found { flex-direction: column; align-items: flex-start; }
    .sa-region-hd { padding: 14px 16px; }
    .sa-region-body { padding: 0 16px 16px; }
}
@media(max-width: 480px) {
    .sa-suburb-grid { grid-template-columns: 1fr; }
}

/* ── STEPS 4-COL ── */
.steps-row-4 { grid-template-columns: repeat(4,1fr); }
@media(max-width:900px){ .steps-row-4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px){ .steps-row-4 { grid-template-columns: 1fr; } }

/* ── SERVICES BENEFITS STRIP ── */
.svc-benefits-strip {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem;
    padding: 1.25rem 1.5rem; background: var(--primary-light);
    border: 1px solid #A5F3FC; border-radius: 12px;
}
.svc-benefit {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text); flex: 1 1 200px;
}
.svc-benefit-note { font-weight: 400; color: var(--text-muted); }

/* ── SERVICES PRICING CTA ── */
.svc-pricing-cta {
    display: grid; grid-template-columns: 360px 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
    margin-bottom: 4rem;
}
.svc-pricing-cta-img { height: 100%; min-height: 280px; }
.svc-pricing-cta-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-pricing-cta-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.svc-pricing-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .75rem;
}
.svc-pricing-cta-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
@media(max-width:768px){
    .svc-pricing-cta { grid-template-columns: 1fr; }
    .svc-pricing-cta-img { min-height: 200px; }
}

/* ── PRICING PAGE ── */
.pricing-highlights {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
    margin: 2.5rem 0;
}
.pricing-highlight {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.25rem 1rem; text-align: center;
}
.pricing-highlight-val { font-family:'Outfit',sans-serif; font-size: 28px; font-weight: 700; color: var(--primary); line-height:1; margin-bottom: .35rem; }
.pricing-highlight-lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.pricing-section { display: flex; flex-direction: column; gap: 3rem; }

.pricing-cat-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.pricing-cat-block-rev .pricing-cat-img { order: 2; }
.pricing-cat-block-rev .pricing-cat-body { order: 1; }
.pricing-cat-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 260px; }
.pricing-cat-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.pricing-cat-title { font-family:'Outfit',sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.pricing-cat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.pricing-table-compact { width: 100%; }
.pricing-table-compact th, .pricing-table-compact td { font-size: 13px; padding: 9px 10px; }

.pricing-full-table { border: 1px solid var(--border); border-radius: 20px; padding: 2rem; }
.pricing-full-grid table { width: 100%; max-width: none; }

@media(max-width:768px){
    .pricing-highlights { grid-template-columns: repeat(2,1fr); }
    .pricing-cat-block { grid-template-columns: 1fr; }
    .pricing-cat-block-rev .pricing-cat-img { order: 0; }
    .pricing-cat-block-rev .pricing-cat-body { order: 0; }
    .pricing-cat-img img { min-height: 180px; }
}
@media(max-width:480px){
    .pricing-highlights { grid-template-columns: repeat(2,1fr); }
}

/* ── FAQ PAGE ── */
.faq-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem;
}
.faq-tab {
    padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--border);
    background: var(--white); color: var(--text-body); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all .2s; font-family: inherit;
}
.faq-tab:hover { border-color: var(--primary); color: var(--primary); }
.faq-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.faq-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; margin-bottom: 3rem;
}

.faq-accordion-col { display: flex; flex-direction: column; gap: 2rem; }

.faq-group-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    color: var(--primary); margin-bottom: 1rem; padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}

.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 8px; }
.faq-item:last-child { margin-bottom: 0; }

.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; background: none; border: none; cursor: pointer; text-align: left;
    font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text);
    transition: background .15s;
}
.faq-q:hover { background: var(--border-light); }
.faq-item.open > .faq-q { background: var(--border-light); color: var(--primary); }
.faq-chevron { flex-shrink: 0; color: var(--text-muted); transition: transform .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-a {
    padding: 0 20px 18px 20px; font-size: 14px; color: var(--text-body); line-height: 1.7;
}
.faq-a p { margin-bottom: .75rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-list { padding-left: 1.25rem; margin: .5rem 0 .75rem; display: flex; flex-direction: column; gap: 6px; }
.faq-list li { font-size: 14px; color: var(--text-body); }

/* Sidebar */
.faq-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.faq-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-sidebar-img { height: 160px; overflow: hidden; }
.faq-sidebar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-sidebar-body { padding: 1.25rem; }
.faq-sidebar-body h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.faq-sidebar-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }

@media(max-width: 900px){
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
}
@media(max-width: 600px){
    .faq-q { font-size: 14px; padding: 14px 16px; }
    .faq-a { padding: 0 16px 16px; }
}

/* ── SUBURB SINGLE PAGE ── */
.suburb-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem;
    align-items: start; padding: 2.5rem 0 4rem;
}
.suburb-main { display: flex; flex-direction: column; gap: 0; }
.suburb-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.suburb-section:last-child { border-bottom: none; }
.suburb-h2 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 1rem; }

/* Steps */
.suburb-steps { display: flex; flex-direction: column; gap: 16px; }
.suburb-step { display: flex; align-items: flex-start; gap: 14px; }
.suburb-step-num {
    flex-shrink: 0; width: 36px; height: 36px; background: var(--primary-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--primary);
}
.suburb-step strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.suburb-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Services grid */
.suburb-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.suburb-svc {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
    background: var(--white); transition: border-color .2s;
}
.suburb-svc:hover { border-color: var(--primary); }
.suburb-svc strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.suburb-svc span { font-size: 12px; color: var(--primary); font-weight: 600; }

/* Delivery cards */
.suburb-delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.suburb-delivery-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; padding: 1.25rem 1rem;
    border: 1px solid var(--border); border-radius: 12px; background: var(--white);
}
.suburb-delivery-card strong { font-size: 13px; font-weight: 700; color: var(--text); }
.suburb-delivery-card span { font-size: 12px; color: var(--text-muted); }

/* Nearby chips */
.suburb-nearby-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.suburb-nearby-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border: 1px solid var(--border); border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--text-body); text-decoration: none;
    background: var(--white); transition: all .2s;
}
.suburb-nearby-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Sidebar */
.suburb-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.suburb-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.suburb-sidebar-img { height: 150px; overflow: hidden; }
.suburb-sidebar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.suburb-sidebar-body { padding: 1.25rem; }
.suburb-sidebar-body h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.suburb-sidebar-body p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }

/* Sidebar meta */
.suburb-sidebar-meta { display: flex; flex-direction: column; gap: 10px; }
.suburb-meta-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-body); }

/* Quick links */
.suburb-quick-link {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text-body); text-decoration: none;
    padding: 9px 12px; border-radius: 8px; border: 1px solid var(--border); transition: all .2s;
}
.suburb-quick-link:hover { border-color: var(--primary); color: var(--primary); }

@media(max-width: 900px){
    .suburb-layout { grid-template-columns: 1fr; padding-top: 1.5rem; }
    .suburb-sidebar { position: static; }
    .suburb-services-grid { grid-template-columns: repeat(2, 1fr); }
    .suburb-delivery-grid { grid-template-columns: 1fr; }
}
@media(max-width: 540px){
    .suburb-services-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */

/* Photo strip */
.contact-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 140px;
    overflow: hidden;
}
.contact-photo-strip-item { overflow: hidden; }
.contact-photo-strip-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.contact-photo-strip-item:hover img { transform: scale(1.05); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0 5rem;
}

/* Form card */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}
.contact-form-hd {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.contact-form-hd h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}
.contact-form-hd p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}
.contact-cf7-wrap {
    padding: 2rem;
}

/* CF7 field overrides — matches site style */
.contact-cf7-wrap .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Row & field-group */
.contact-cf7-wrap .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.25rem;
}
.contact-cf7-wrap .col-md-12 { flex: 0 0 100%; }
.contact-cf7-wrap .col-md-6  { flex: 1 1 calc(50% - 8px); min-width: 180px; }

.contact-cf7-wrap .field-group {
    display: flex;
    flex-direction: column;
}
.contact-cf7-wrap label {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

/* Floating label style */
.contact-cf7-wrap .label-bg {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.contact-cf7-wrap .red { color: #EF4444; margin-left: 2px; }

/* Input & textarea */
.contact-cf7-wrap .field-format,
.contact-cf7-wrap input.field-format,
.contact-cf7-wrap textarea.field-format {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-body);
    font-family: inherit;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
}
.contact-cf7-wrap .field-format:focus,
.contact-cf7-wrap input.field-format:focus,
.contact-cf7-wrap textarea.field-format:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, .12);
}
.contact-cf7-wrap .field-format::placeholder { color: var(--text-hint); }

.contact-cf7-wrap textarea.field-format {
    min-height: 140px;
    resize: vertical;
}

/* reCAPTCHA note */
.contact-cf7-wrap .note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.contact-cf7-wrap .note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit row */
.contact-cf7-wrap .center { display: flex; justify-content: flex-start; }
.contact-cf7-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
}
.contact-cf7-wrap .btn.blue,
.contact-cf7-wrap input[type="submit"].btn {
    background: var(--primary);
    color: #fff;
}
.contact-cf7-wrap .btn.blue:hover,
.contact-cf7-wrap input[type="submit"].btn:hover {
    background: var(--primary-dark);
}
.contact-cf7-wrap .btn:active { transform: scale(.98); }

/* CF7 validation states */
.contact-cf7-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #EF4444;
    margin-top: 4px;
    display: block;
}
.contact-cf7-wrap .wpcf7-not-valid .field-format {
    border-color: #EF4444;
}
.contact-cf7-wrap .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none !important;
}
.contact-cf7-wrap .wpcf7-mail-sent-ok {
    background: #DCFCE7;
    color: #15803D;
}
.contact-cf7-wrap .wpcf7-validation-errors,
.contact-cf7-wrap .wpcf7-mail-sent-ng {
    background: #FEF2F2;
    color: #B91C1C;
}

/* Sidebar cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: .75rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: border-color .2s, background .2s;
    cursor: pointer;
}
.contact-info-row:hover { border-color: var(--primary); background: var(--primary-light); }
.contact-info-icon {
    width: 36px; height: 36px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-key {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 2px;
}
.contact-info-val {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* Photo gallery */
.contact-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 2.5rem 0 4rem;
}
.contact-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 340px;
}
.contact-gallery-main img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.contact-gallery-main:hover img { transform: scale(1.03); }
.contact-gallery-main-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(14,116,144,.8) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem;
}
.contact-gallery-stack { display: flex; flex-direction: column; gap: 16px; }
.contact-gallery-stack-item {
    position: relative; border-radius: 16px; overflow: hidden;
    flex: 1; min-height: 0;
}
.contact-gallery-stack-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.contact-gallery-stack-item:hover img { transform: scale(1.04); }
.contact-gallery-stack-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(14,116,144,.75) 0%, transparent 100%);
    color: #fff; font-size: 13px; font-weight: 700;
    padding: .75rem 1rem;
}

/* Responsive */
@media(max-width: 960px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; }
    .contact-gallery { grid-template-columns: 1fr; }
    .contact-gallery-main { height: 260px; }
    .contact-gallery-stack { flex-direction: row; }
    .contact-gallery-stack-item { height: 180px; }
    .contact-photo-strip { height: 100px; }
}
@media(max-width: 540px) {
    .contact-cf7-wrap .col-md-6 { flex: 0 0 100%; }
    .contact-cf7-wrap { padding: 1.25rem; }
    .contact-form-hd { padding: 1.25rem; }
    .contact-gallery-stack { flex-direction: column; }
    .contact-photo-strip { display: none; }
}

/* ── TAGS ── */
.tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.tag-blue { background: #E0F2FE; color: #0E7490; }
.tag-green { background: #DCFCE7; color: #15803D; }

/* ── PRICING TABLE ── */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 1rem; }
.pricing-table th {
    background: var(--primary-light); color: var(--primary-dark);
    font-weight: 700; text-align: left; padding: 10px 14px;
    border-bottom: 1px solid #A5F3FC;
}
.pricing-table td { padding: 9px 14px; border-bottom: 0.5px solid var(--border-light); color: var(--text-body); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 700; color: var(--primary); font-size: 14px; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-card {
    background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.5rem; cursor: pointer; transition: all .2s; text-decoration: none; color: inherit; display: block;
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-2px); color: inherit; }
.cat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.cat-card h3 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: .3rem; }
.cat-card p { font-size: 12px; color: var(--text-muted); margin-bottom: .7rem; line-height: 1.5; }
.cat-from { font-size: 12px; font-weight: 700; color: var(--primary); }
.cat-arrow { font-size: 11px; color: var(--text-hint); margin-top: .5rem; display: flex; align-items: center; gap: 4px; }
.cat-arrow--primary { color: var(--primary); }
.cat-card--featured { background: var(--primary-light); border-color: #A5F3FC; }
.cat-icon--white { background: #fff; }
.cat-card__featured-title { color: var(--primary); }
.cat-card__featured-desc  { color: var(--primary-dark); }

/* ── SERVICE CARDS ── */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svc-card {
    background: var(--white); border: 0.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem;
}
.svc-card h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.svc-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-body); }
.svc-highlight { border-color: var(--primary); background: var(--primary-light); }

/* ── FOOTER ── */
.site-footer { background: #111827; color: #9CA3AF; padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 2rem;
    border-bottom: 0.5px solid #374151;
}
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 13px; line-height: 1.65; max-width: 260px; margin-bottom: 1rem; }
.footer-col h4 {
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
    color: #fff; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .04em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col a { font-size: 13px; color: #9CA3AF; text-decoration: none; transition: color .2s; cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; font-size: 12px; color: #6B7280; padding-top: 1.25rem; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.product-card {
    background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer; transition: all .2s; text-decoration: none; color: inherit; display: block;
}
.product-card:hover { border-color: var(--primary); transform: translateY(-2px); color: inherit; }
.product-img {
    height: 160px; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 6px; font-size: 11px; font-weight: 600; color: var(--text-hint);
}
.product-body { padding: 1rem; }
.product-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--primary); margin-bottom: .35rem; }
.product-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: .75rem; }
.product-price { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--primary); }
.product-price .from { font-size: 11px; font-weight: 600; color: var(--text-hint); margin-right: 3px; }
.product-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: .6rem; margin-top: .6rem; border-top: 0.5px solid var(--border-light);
}
.add-btn {
    background: var(--primary); color: #fff; font-family: 'Nunito Sans', sans-serif;
    font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 7px; border: none;
    cursor: pointer; transition: background .2s;
}
.add-btn:hover { background: var(--primary-dark); }

/* ── COLLECTION SIDEBAR ── */
.collection-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding-top: 1.5rem; }
.sidebar h3 {
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--text);
    margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 0.5px solid var(--border);
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-body); cursor: pointer; padding: 4px 0; }
.filter-group label input { accent-color: var(--primary); }
.filter-group label span { font-size: 11px; color: var(--text-hint); margin-left: auto; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-hint); padding: 12px 0 0; }
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 500; cursor: pointer; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SERVICE TOGGLE ── */
.service-toggle {
    display: flex; gap: 0; background: var(--border-light); border-radius: 10px;
    padding: 4px; width: fit-content; margin-bottom: 2rem;
}
.svc-btn {
    font-family: 'Nunito Sans', sans-serif; font-size: 13px; font-weight: 700;
    padding: 9px 22px; border-radius: 8px; border: none; cursor: pointer;
    background: transparent; color: var(--text-muted); transition: all .2s;
}
.svc-btn.active { background: var(--white); color: var(--primary); box-shadow: 0 1px 4px rgba(0,0,0,.1); }

/* ── SINGLE PRODUCT ── */
.si-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 2.5rem;
    align-items: flex-start;
}
.si-product-image { border-radius: var(--radius-lg); overflow: hidden; }
.si-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .75rem;
    line-height: 1.25;
}
.si-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 1.1rem; }
.si-from { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.si-price { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 700; color: var(--primary); }
.si-price .amount { font-size: 28px; }
.si-product-short-desc { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 1.25rem; }
.si-pickup-note {
    display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
    color: var(--primary); background: var(--primary-light); border: 0.5px solid #A5F3FC;
    border-radius: 8px; padding: 9px 14px; margin-bottom: 1.25rem;
}
.si-badge {
    display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600;
    color: var(--text-muted); background: var(--white); border: 0.5px solid var(--border);
    border-radius: 20px; padding: 5px 12px;
}

/* WooCommerce overrides */
.single_add_to_cart_button.button {
    background: var(--primary) !important; color: #fff !important;
    font-family: 'Nunito Sans', sans-serif !important; font-size: 15px !important; font-weight: 700 !important;
    padding: 13px 28px !important; border-radius: 10px !important; border: none !important;
    cursor: pointer !important; transition: background .2s !important; width: 100% !important;
}
.single_add_to_cart_button.button:hover { background: var(--primary-dark) !important; }
.quantity input[type="number"] {
    border: 1.5px solid var(--border) !important; border-radius: 8px !important;
    padding: 10px 14px !important; font-size: 15px !important; width: 80px !important;
}
.woocommerce-pagination .page-numbers { display: flex; gap: 6px; list-style: none; padding: 0; }
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px; border: 0.5px solid var(--border);
    font-size: 13px; font-weight: 600; color: var(--text-muted);
    text-decoration: none; background: var(--white); transition: all .2s;
}
.woocommerce-pagination .page-numbers li .current,
.woocommerce-pagination .page-numbers li a:hover {
    background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.page-hero .fw-banner__img  { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero .fw-banner__overlay { position: absolute; inset: 0; }
.fw-banner__overlay--teal-diagonal { background: linear-gradient(135deg, rgba(14,116,144,.82) 0%, rgba(8,145,178,.25) 100%); }
.page-hero .fw-banner__content { position: absolute; inset: 0; display: flex; align-items: center; }
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .6rem;
}
.page-hero > .fw-banner__content p {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    line-height: 1.6;
}

/* ── HERO SECTION ── */
.hero-section {
    background: linear-gradient(135deg, #ECFEFF 0%, #E0F2FE 60%, #F0F9FF 100%);
    border-bottom: 0.5px solid #A5F3FC;
    padding: 4rem 0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}
.hero-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-section h1 span { color: var(--primary); }
.hero-section .hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 520px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 0.5px solid #A5F3FC;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.hero-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-checks  { display: flex; gap: 20px; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-check-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.hero-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    position: relative;
    box-shadow: 0 8px 32px rgba(8, 145, 178, .12);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.hero-img-badge span { font-size: 12px; font-weight: 700; color: var(--text); }

/* ── SECTION VARIANTS ── */
.section--white { background: var(--white); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.section--muted { background: #F8FAFC; border-top: 0.5px solid var(--border); }
.section--dark  { background: #0F2940; padding: 3.5rem 0; }
.section-hd--center { text-align: center; }
.section-hd--left   { text-align: left; padding-bottom: 1rem; }

/* ── FULL-WIDTH PHOTO BANNER ── */
.fw-banner {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.fw-banner--cta { height: 300px; }
.fw-banner--sm  { height: 280px; }
.fw-banner__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fw-banner__overlay { position: absolute; inset: 0; }
.fw-banner__overlay--teal-left  { background: linear-gradient(90deg,  rgba(14,116,144,.75) 0%, rgba(14,116,144,.1) 100%); }
.fw-banner__overlay--dark-left  { background: linear-gradient(100deg, rgba(8,37,64,.92) 0%, rgba(8,145,178,.45) 60%, transparent 100%); }
.fw-banner__content { position: absolute; inset: 0; display: flex; align-items: center; }

.fw-banner .banner-label {
    font-size: 12px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #A5F3FC; margin-bottom: .75rem;
}
.fw-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
    max-width: 460px;
}
.fw-banner p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 420px; line-height: 1.6; margin-bottom: 1.5rem; }
.fw-banner .btn-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #A5F3FC;
    margin-bottom: 1rem;
}

.btn-banner-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--primary);
    font-size: 14px; font-weight: 700;
    padding: 11px 22px; border-radius: 8px;
    text-decoration: none; transition: background .2s;
}
.btn-banner-primary:hover { background: var(--primary-light); color: var(--primary); }

.btn-banner-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff; font-size: 14px; font-weight: 600;
    padding: 12px 24px; border-radius: 8px;
    text-decoration: none; transition: background .2s;
}
.btn-banner-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── PRICING CTA BOX ── */
.pricing-cta-wrap { text-align: center; padding: 3rem 0 5rem; }
.pricing-cta-box {
    background: var(--primary-light);
    border: 1px solid #A5F3FC;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .75rem;
}
.pricing-cta-box p { color: var(--text-muted); font-size: 15px; margin-bottom: 1.5rem; }

/* ── GUARANTEE SECTION ── */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.guarantee-icon {
    width: 48px; height: 48px;
    background: rgba(8,145,178,.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.guarantee-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.guarantee-text  { font-size: 13px; color: #94A3B8; line-height: 1.6; }

/* ── REVIEWS SECTION ── */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.reviews-sticky-col { position: sticky; top: 100px; }
.reviews-col-label { margin-bottom: .75rem; }
.reviews-col-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #0F2940;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.reviews-col-p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; max-width: 400px; }

.review-score-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 16px;
    margin-bottom: 2rem;
}
.review-score-divider { width: 1px; height: 60px; background: #BAE6FD; }
.review-score-num { text-align: center; }
.review-score-num .score { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; }
.review-score-num .stars { display: flex; gap: 2px; justify-content: center; margin: .3rem 0; }
.review-score-num .count { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.review-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.review-bar-label { font-size: 11px; color: var(--text-muted); width: 44px; white-space: nowrap; }
.review-bar-track { flex: 1; height: 5px; background: #E0F2FE; border-radius: 3px; overflow: hidden; }
.review-bar-fill  { height: 100%; background: var(--primary); border-radius: 3px; }
.review-bar-pct   { font-size: 11px; color: var(--text-muted); width: 26px; text-align: right; }

.review-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.review-card {
    border-radius: 16px;
    padding: 1.5rem;
    transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: 0 8px 24px rgba(8,145,178,.1); transform: translateY(-2px); }
.review-card--default { background: #fff; border: 1px solid var(--border); }
.review-card--tint    { background: #F0F9FF; border: 1px solid #BAE6FD; }
.review-card__stars  { display: flex; gap: 3px; margin-bottom: .9rem; }
.review-card__text   { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.review-card__author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
    color: #fff; flex-shrink: 0;
}
.review-author-name { font-size: 13px; font-weight: 700; color: #0F2940; }
.review-author-sub  { font-size: 11px; color: var(--text-hint); }

/* ── FAQ NARROW + INLINE LINKS ── */
.faq-narrow       { max-width: 760px; margin: 0 auto; }
.faq-link         { color: var(--primary); font-weight: 600; }
.faq-tabs         { margin-top: 2.5rem; }
.section-cta-row  { text-align: center; margin-top: 2.5rem; }
.link-arrow       { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 14px; font-weight: 700; text-decoration: none; }

/* ── UTILITY BUTTONS ── */
.btn-block { width: 100%; text-align: center; display: block; }

/* ── SERVICE AREAS PAGE ── */
.svc-benefits-strip { margin-top: 2rem; }
.sa-tabs            { margin-top: 2.5rem; }
.sa-postcode        { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-left: 2px; }
.sa-cta-banner      { height: 240px; margin: 1rem 0 4rem; border-radius: 20px; }
.fw-banner__content--padded { padding: 0 3rem; }
.banner-h2  { font-family: 'Outfit', sans-serif; font-size: clamp(18px,2.5vw,30px); font-weight: 700; color: #fff; margin-bottom: .4rem; }
.banner-sub { color: rgba(255,255,255,.85); font-size: 14px; }

/* ── SUBURB SINGLE ── */
.suburb-body-text        { font-size: 15px; color: var(--text-body); line-height: 1.75; }
.suburb-body-text--mb    { margin-bottom: 1rem; }
.suburb-note             { margin-top: 1.25rem; font-size: 13px; color: var(--text-muted); }
.suburb-note--mt-sm      { margin-top: 1rem; }
.suburb-express-label    { color: #16A34A; font-weight: 600; }
.label--mb-sm            { margin-bottom: .4rem; }

/* ── CONTACT CARD IMAGE ── */
.contact-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.contact-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14,116,144,.82) 0%, transparent 55%);
}
.contact-card-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
}
.contact-card-img-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 .2rem; }
.contact-card-img-sub   { font-size: 12px; color: rgba(255,255,255,.85); margin: 0; }
.contact-info-row--static { cursor: default; }

/* ── SIDEBAR CARD BODY ── */
.sidebar-card-body  { padding: 1.5rem; }
.sidebar-card-hd    { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.sidebar-card-title { font-size: 15px; font-weight: 700; color: var(--text); }
.sidebar-card-text  { font-size: 13px; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-quick-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: .75rem; }
.sidebar-quick-links { display: flex; flex-direction: column; gap: 8px; }

/* ── BANNER SPLIT LAYOUT (CTA with text + button side by side) ── */
.fw-banner__split { display: flex; align-items: center; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 1rem; }
.fw-banner--xs    { height: 220px; }
.btn-banner-primary--nowrap { white-space: nowrap; padding: 12px 24px; }

/* ── FOOTER ADDITIONS ── */
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; }
.footer-cta      { margin-top: 1rem; }
.btn-footer-book {
    display: inline-block;
    background: var(--cta); color: #fff;
    font-family: 'Nunito Sans', sans-serif; font-size: 13px; font-weight: 700;
    padding: 9px 18px; border-radius: 8px;
    text-decoration: none; transition: background .2s;
}
.btn-footer-book:hover { background: var(--cta-dark); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img-wrap { display: none; }
    .service-cards, .footer-grid, .collection-layout { grid-template-columns: 1fr; }
    .si-product-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 2rem; }
    .reviews-sticky-col { position: static; top: auto; }
}
@media (max-width: 768px) {
    .guarantee-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .section { padding: 2.5rem 0; }
}
@media (max-width: 480px) {
    .guarantee-grid { grid-template-columns: 1fr; }
}
