/* ==========================================================
   WeBuyScrap Suite v2.0 — Trust-Focused Design
   Research: 12 top UK scrap car sites analyzed
   ========================================================== */

:root {
    --wbss-navy: #0d0b2e;
    --wbss-navy-light: #151245;
    --wbss-gold: #c8943e;
    --wbss-gold-hover: #b37f2f;
    --wbss-green: #00b67a;
    --wbss-green-dark: #009567;
    --wbss-blue: #1a73e8;
    --wbss-blue-light: #e8f0fe;
    --wbss-white: #ffffff;
    --wbss-off-white: #f8f9fa;
    --wbss-light: #f0f2f5;
    --wbss-gray: #5f6368;
    --wbss-gray-light: #dadce0;
    --wbss-dark: #202124;
    --wbss-red: #d93025;
    --wbss-whatsapp: #25d366;
    --wbss-whatsapp-hover: #1fb855;
    --wbss-green-light: #e6f7ef;
    --wbss-green-text: #0d7a40;
    --wbss-green-border: #a3e4c1;
    --wbss-red-light: #fce8e6;
    --wbss-red-text: #c5221f;
    --wbss-red-border: #f5b7b1;
    --wbss-placeholder: #c5c5c5;
    --wbss-footer-text: #9a9ab0;
    --wbss-footer-label: #bbbcd0;
    --wbss-footer-muted: #556;
    --wbss-flag-bg: #1a237e;
    --wbss-radius: 10px;
    --wbss-radius-sm: 6px;
    --wbss-radius-xs: 4px;
    --wbss-radius-pill: 50px;
    --wbss-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --wbss-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --wbss-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wbss-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base
   ---------------------------------------------------------- */
.wbss-body {
    margin: 0; padding: 0;
    font-family: var(--wbss-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--wbss-dark);
    background: var(--wbss-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wbss-body *, .wbss-body *::before, .wbss-body *::after { box-sizing: border-box; }
.wbss-body { overflow-x: hidden; }
.wbss-body img { max-width: 100%; height: auto; display: block; }
.wbss-body a { color: var(--wbss-blue); text-decoration: none; transition: color var(--wbss-transition); }
.wbss-body a:hover { color: var(--wbss-gold); }

.wbss-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wbss-container--narrow { max-width: 720px; }
.wbss-container--wide { max-width: 1320px; }

/* ==========================================================
   SKIP LINK — accessible skip-to-content
   ========================================================== */
.wbss-skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--wbss-green); color: var(--wbss-white);
    padding: 12px 24px; border-radius: 0 0 var(--wbss-radius-sm) var(--wbss-radius-sm);
    font-size: 14px; font-weight: 700; z-index: 10000;
    text-decoration: none; transition: top 0.2s;
}
.wbss-skip-link:focus {
    top: 0; outline: 3px solid var(--wbss-gold); outline-offset: 2px;
}

/* ==========================================================
   HEADER — sticky, professional, phone prominent
   ========================================================== */
.wbss-header {
    background: var(--wbss-navy);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    /* subtle shadow appears on scroll via JS */
    transition: box-shadow 0.3s ease;
}
.wbss-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.wbss-header__inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}

/* Logo */
.wbss-header__logo {
    display: flex; align-items: center; gap: 12px;
    color: var(--wbss-white); text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--wbss-transition);
}
.wbss-header__logo:hover { opacity: 0.9; color: var(--wbss-white); }
.wbss-header__logo:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 4px; border-radius: var(--wbss-radius-xs);
}
.wbss-header__logo-icon { width: 44px; height: 44px; }
.wbss-header__logo-text {
    font-size: 15px; font-weight: 700; color: var(--wbss-white);
    line-height: 1.25;
}
.wbss-header__logo-amp { color: var(--wbss-gold); }

/* Phone — desktop */
.wbss-header__phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--wbss-white); font-size: 18px; font-weight: 700;
    text-decoration: none; letter-spacing: 0.5px;
    padding: 8px 16px; border-radius: var(--wbss-radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--wbss-transition);
}
.wbss-header__phone:hover {
    color: var(--wbss-green); border-color: var(--wbss-green);
    background: rgba(0,182,122,0.08);
}
.wbss-header__phone:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 2px;
}
.wbss-header__phone-svg { flex-shrink: 0; opacity: 0.8; }
.wbss-header__phone-number { white-space: nowrap; }

/* Mobile actions container */
.wbss-header__mobile-actions {
    display: none; align-items: center; gap: 8px;
}
.wbss-header__mobile-phone {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--wbss-green); color: var(--wbss-white);
    text-decoration: none; transition: background var(--wbss-transition);
}
.wbss-header__mobile-phone:hover { background: var(--wbss-green-dark); color: var(--wbss-white); }

/* Navigation — semantic list structure */
.wbss-header__nav { display: flex; align-items: center; }
.wbss-header__menu {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.wbss-header__menu > li { position: relative; }
.wbss-header__menu > li > a {
    color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
    text-decoration: none; transition: color var(--wbss-transition), background var(--wbss-transition);
    letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 5px;
    background: none; border: none; cursor: pointer; font-family: var(--wbss-font);
    padding: 10px 16px; border-radius: var(--wbss-radius-sm);
    position: relative;
}
.wbss-header__menu > li > a:hover { color: var(--wbss-white); background: rgba(255,255,255,0.06); }
.wbss-header__menu > li > a:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 2px; color: var(--wbss-white);
}

/* Active page indicator */
.wbss-header__menu > li > a.is-active,
.wbss-mega-parent.is-active > .wbss-mega-parent__trigger {
    color: var(--wbss-white);
}
.wbss-header__menu > li > a.is-active::after,
.wbss-mega-parent.is-active > .wbss-mega-parent__trigger::after {
    content: ''; position: absolute; bottom: -4px; left: 16px; right: 16px;
    height: 2px; background: var(--wbss-green); border-radius: 2px;
}

/* Mega trigger */
.wbss-mega-parent__trigger {
    color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
    text-decoration: none; transition: color var(--wbss-transition), background var(--wbss-transition);
    letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 5px;
    background: none; border: none; cursor: pointer; font-family: var(--wbss-font);
    padding: 10px 16px; border-radius: var(--wbss-radius-sm);
    position: relative;
}
.wbss-mega-parent__trigger:hover { color: var(--wbss-white); background: rgba(255,255,255,0.06); }
.wbss-mega-parent__trigger:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 2px; color: var(--wbss-white);
}
.wbss-mega-chevron {
    opacity: 0.5; transition: transform 0.3s ease, opacity 0.3s ease;
}

/* CTA button in nav */
.wbss-header__cta-item { margin-left: 8px; }
.wbss-header__cta-btn {
    background: var(--wbss-green) !important; color: var(--wbss-white) !important;
    padding: 10px 22px !important; border-radius: var(--wbss-radius-sm);
    font-weight: 700 !important; font-size: 13px !important;
    letter-spacing: 0.5px; transition: all var(--wbss-transition);
    display: inline-flex !important; align-items: center; gap: 6px;
    box-shadow: 0 2px 8px rgba(0,182,122,0.25);
}
.wbss-header__cta-btn:hover {
    background: var(--wbss-green-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,182,122,0.35);
}
.wbss-header__cta-btn:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 2px;
}
.wbss-header__cta-icon { opacity: 0.8; }

/* ==========================================================
   MEGA DROPDOWN — smooth transitions, crawlable content
   ========================================================== */
.wbss-mega-parent { position: relative; }
.wbss-mega-dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding-top: 14px; z-index: 999;
    min-width: 740px;
    /* Visibility + opacity for smooth transition while keeping content crawlable */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.wbss-mega-parent:hover > .wbss-mega-dropdown,
.wbss-mega-parent.is-open > .wbss-mega-dropdown {
    visibility: visible; opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.wbss-mega-parent:hover > .wbss-mega-parent__trigger .wbss-mega-chevron,
.wbss-mega-parent.is-open > .wbss-mega-parent__trigger .wbss-mega-chevron {
    transform: rotate(180deg); opacity: 0.9;
}
.wbss-mega-parent:hover > .wbss-mega-parent__trigger,
.wbss-mega-parent.is-open > .wbss-mega-parent__trigger {
    color: var(--wbss-white); background: rgba(255,255,255,0.06);
}

.wbss-mega-dropdown__inner {
    display: flex; gap: 0;
    background: var(--wbss-white); border-radius: var(--wbss-radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Mega columns */
.wbss-mega-col {
    padding: 28px 24px; min-width: 200px;
    border-right: 1px solid var(--wbss-gray-light);
}
.wbss-mega-col:last-child { border-right: none; }
.wbss-mega-col--services { min-width: 280px; }
.wbss-mega-col--wide { min-width: 340px; }
.wbss-mega-col--cta { background: var(--wbss-off-white); min-width: 240px; }
.wbss-mega-col__title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--wbss-gray); margin: 0 0 14px;
}

/* Mega list reset */
.wbss-mega-list {
    list-style: none; margin: 0; padding: 0;
}

/* Service links with descriptions */
.wbss-mega-service-link {
    display: block; padding: 8px 10px; margin: 0 -10px;
    border-radius: var(--wbss-radius-sm);
    text-decoration: none; color: var(--wbss-dark) !important;
    transition: background var(--wbss-transition), color var(--wbss-transition);
}
.wbss-mega-service-link:hover { background: rgba(0,182,122,0.06); }
.wbss-mega-service-link:focus-visible {
    outline: 2px solid var(--wbss-green); outline-offset: -2px;
}
.wbss-mega-service-link.is-current {
    background: rgba(0,182,122,0.08);
    border-left: 3px solid var(--wbss-green);
    padding-left: 10px; margin-left: -13px;
}
.wbss-mega-service-link__name {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--wbss-dark); line-height: 1.3;
    transition: color var(--wbss-transition);
}
.wbss-mega-service-link:hover .wbss-mega-service-link__name { color: var(--wbss-green); }
.wbss-mega-service-link__desc {
    display: block; font-size: 12px; color: var(--wbss-gray);
    line-height: 1.4; margin-top: 2px;
}

/* Standard mega links */
.wbss-mega-link {
    display: block; padding: 7px 10px; margin: 0 -10px; font-size: 14px;
    color: var(--wbss-dark) !important; text-decoration: none;
    transition: background var(--wbss-transition), color var(--wbss-transition);
    border-radius: var(--wbss-radius-sm);
}
.wbss-mega-link:hover { color: var(--wbss-green) !important; background: rgba(0,182,122,0.06); }
.wbss-mega-link:focus-visible { outline: 2px solid var(--wbss-green); outline-offset: -2px; }
.wbss-mega-link--all {
    font-weight: 700; color: var(--wbss-green) !important; margin-top: 8px;
}
.wbss-mega-link__count { font-size: 12px; color: var(--wbss-gray); font-weight: 400; }

/* Areas grid in dropdown */
.wbss-mega-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }

/* CTA section in mega dropdown */
.wbss-mega-cta h4 { font-size: 17px; margin: 0 0 8px; color: var(--wbss-dark); font-weight: 700; }
.wbss-mega-cta p { font-size: 13px; color: var(--wbss-gray); margin: 0 0 16px; line-height: 1.5; }
.wbss-mega-cta__btn {
    padding: 12px 24px !important; font-size: 14px !important;
    display: block; text-align: center; width: 100%;
}
.wbss-mega-cta__phone { display: block; margin-top: 12px; font-size: 12px; color: var(--wbss-gray); text-align: center; }
.wbss-mega-cta__phone a { color: var(--wbss-green); font-weight: 700; }
.wbss-mega-cta__phone a:hover { color: var(--wbss-green-dark); }

/* ==========================================================
   HAMBURGER — animated 3-bar to X
   ========================================================== */
.wbss-header__toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 10px; width: 44px; height: 44px; border-radius: var(--wbss-radius-sm);
    transition: background var(--wbss-transition);
}
.wbss-header__toggle:hover { background: rgba(255,255,255,0.08); }
.wbss-header__toggle:focus-visible {
    outline: 2px solid var(--wbss-gold); outline-offset: 2px;
}
.wbss-header__toggle-bar {
    display: block; width: 22px; height: 2px;
    background: var(--wbss-white); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* Animate to X when open */
.wbss-header__toggle[aria-expanded="true"] .wbss-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.wbss-header__toggle[aria-expanded="true"] .wbss-header__toggle-bar:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.wbss-header__toggle[aria-expanded="true"] .wbss-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   TRUST BAR — immediately visible, like all top competitors
   ========================================================== */
.wbss-trust-bar {
    background: var(--wbss-white);
    border-bottom: 1px solid var(--wbss-gray-light);
    padding: 12px 0;
}
.wbss-trust-bar__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
    max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.wbss-trust-bar__item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--wbss-dark);
    white-space: nowrap;
}
.wbss-trust-bar__svg { flex-shrink: 0; color: var(--wbss-green); }
.wbss-trust-bar__label { color: var(--wbss-gray); font-weight: 500; }
.wbss-trust-bar__stars { color: var(--wbss-green); font-size: 16px; letter-spacing: 1px; }
.wbss-trust-bar__badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--wbss-green); color: var(--wbss-white);
    padding: 4px 12px; border-radius: var(--wbss-radius-xs); font-size: 12px; font-weight: 700;
}

/* ==========================================================
   HERO — clean, form-focused, like top competitors
   ========================================================== */
.wbss-hero {
    background: var(--wbss-navy);
    background-image: url('../../assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 70px 24px 80px;
    position: relative; overflow: hidden;
    text-align: center;
}
.wbss-hero--page { padding: 55px 24px 60px; }
.wbss-hero--small { padding: 40px 24px 45px; }
.wbss-hero__bg-circle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, var(--wbss-navy-light) 0%, transparent 70%);
    pointer-events: none;
}
.wbss-hero__content {
    position: relative; z-index: 2; max-width: 680px; margin: 0 auto;
}
.wbss-hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 16px; border-radius: var(--wbss-radius-pill);
    font-size: 12px; font-weight: 600; color: var(--wbss-green);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 20px;
}
.wbss-hero__title {
    font-size: 44px; font-weight: 800; color: var(--wbss-white);
    margin: 0 0 16px; line-height: 1.15;
}
.wbss-hero__subtitle {
    font-size: 17px; color: rgba(255,255,255,0.7);
    margin: 0 0 35px; line-height: 1.6;
}
.wbss-hero__meta {
    display: flex; gap: 12px; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 12px;
}

/* ==========================================================
   QUOTE FORM — 2-step, prominent, like every top competitor
   ========================================================== */
.wbss-quote-form { max-width: 460px; margin: 0 auto; }
.wbss-form__reg-wrap {
    display: flex; align-items: stretch;
    background: var(--wbss-white); border-radius: var(--wbss-radius);
    overflow: hidden; box-shadow: var(--wbss-shadow-lg);
    border: 2px solid transparent;
    transition: border-color var(--wbss-transition);
}
.wbss-form__reg-wrap:focus-within { border-color: var(--wbss-gold); }
.wbss-form__flag {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--wbss-flag-bg); color: var(--wbss-white);
    padding: 10px 14px; min-width: 52px;
}
.wbss-form__flag-icon { font-size: 18px; line-height: 1; }
.wbss-form__flag-text { font-size: 10px; font-weight: 700; margin-top: 2px; }
.wbss-form__reg {
    flex: 1; border: none; padding: 18px 16px;
    font-size: 24px; font-weight: 700; font-family: 'Charles Wright', var(--wbss-font);
    text-align: center; letter-spacing: 3px;
    outline: none; text-transform: uppercase; background: var(--wbss-white);
}
.wbss-form__reg::placeholder { color: var(--wbss-placeholder); font-weight: 500; letter-spacing: 1px; font-size: 20px; }
.wbss-form__next,
.wbss-form__submit {
    display: block; width: 100%; padding: 18px;
    margin-top: 12px; border: none; border-radius: var(--wbss-radius);
    font-size: 17px; font-weight: 700; font-family: var(--wbss-font);
    cursor: pointer; transition: all var(--wbss-transition);
    letter-spacing: 0.8px; text-transform: uppercase;
}
.wbss-form__next {
    background: var(--wbss-green); color: var(--wbss-white);
}
.wbss-form__next:hover { background: var(--wbss-green-dark); transform: translateY(-1px); }
.wbss-form__submit {
    background: var(--wbss-green); color: var(--wbss-white);
}
.wbss-form__submit:hover { background: var(--wbss-green-dark); }
.wbss-form__submit--whatsapp {
    background: var(--wbss-whatsapp); color: var(--wbss-white);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.wbss-form__submit--whatsapp:hover {
    background: var(--wbss-whatsapp-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.wbss-form__submit-icon { flex-shrink: 0; }
.wbss-form__fields { margin-top: 14px; }
.wbss-form__input {
    display: block; width: 100%; padding: 14px 16px; margin-bottom: 10px;
    border: 2px solid var(--wbss-gray-light); border-radius: var(--wbss-radius-sm);
    font-size: 15px; font-family: var(--wbss-font);
    outline: none; transition: border-color var(--wbss-transition);
    background: var(--wbss-white);
}
.wbss-form__input:focus { border-color: var(--wbss-green); }
.wbss-form__message {
    margin-top: 14px; padding: 14px 18px;
    border-radius: var(--wbss-radius-sm); font-size: 14px; text-align: center;
}
.wbss-form__message--success { background: var(--wbss-green-light); color: var(--wbss-green-text); border: 1px solid var(--wbss-green-border); }
.wbss-form__message--error { background: var(--wbss-red-light); color: var(--wbss-red-text); border: 1px solid var(--wbss-red-border); }
.wbss-form__loading { text-align: center; padding: 14px; color: var(--wbss-gray); font-size: 14px; }
.wbss-spinner {
    display: inline-block; width: 18px; height: 18px;
    border: 3px solid var(--wbss-gray-light); border-top-color: var(--wbss-green);
    border-radius: 50%; animation: wbss-spin 0.6s linear infinite;
    vertical-align: middle; margin-right: 8px;
}
@keyframes wbss-spin { to { transform: rotate(360deg); } }

.wbss-quote-section {
    padding: 60px 24px; background: var(--wbss-off-white);
}

/* ==========================================================
   GUARANTEE BAR — top pattern from competitors
   ========================================================== */
.wbss-guarantees {
    padding: 50px 24px;
    background: var(--wbss-white);
    border-bottom: 1px solid var(--wbss-gray-light);
}
.wbss-guarantees__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.wbss-guarantee {
    text-align: center; padding: 24px 16px;
    border-radius: var(--wbss-radius);
    transition: box-shadow var(--wbss-transition);
}
.wbss-guarantee:hover { box-shadow: var(--wbss-shadow); }
.wbss-guarantee__icon {
    width: 56px; height: 56px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--wbss-blue-light); border-radius: 50%;
    font-size: 26px;
}
.wbss-guarantee__title {
    font-size: 15px; font-weight: 700; color: var(--wbss-dark);
    margin: 0 0 6px;
}
.wbss-guarantee__text {
    font-size: 13px; color: var(--wbss-gray); line-height: 1.5;
    margin: 0;
}

/* ==========================================================
   STATS BAR — vehicle counter like CarTakeBack/Motorwise
   ========================================================== */
.wbss-stats {
    background: var(--wbss-navy);
    padding: 40px 24px;
}
.wbss-stats__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    text-align: center;
}
.wbss-stats__number {
    font-size: 38px; font-weight: 800; color: var(--wbss-green);
    line-height: 1.1;
}
.wbss-stats__label {
    font-size: 13px; color: rgba(255,255,255,0.7);
    margin-top: 4px; text-transform: uppercase; letter-spacing: 1px;
}

/* ==========================================================
   HOW IT WORKS — 3-step, numbered, like every competitor
   ========================================================== */
.wbss-how-it-works {
    background: var(--wbss-off-white); padding: 80px 24px;
    text-align: center;
}
.wbss-steps { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.wbss-step {
    text-align: center; max-width: 300px;
    background: var(--wbss-white); padding: 40px 30px;
    border-radius: var(--wbss-radius); box-shadow: var(--wbss-shadow);
    transition: transform var(--wbss-transition), box-shadow var(--wbss-transition);
}
.wbss-step:hover { transform: translateY(-5px); box-shadow: var(--wbss-shadow-lg); }
.wbss-step__number {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--wbss-green); color: var(--wbss-white);
    font-size: 26px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.wbss-step__icon { font-size: 36px; margin-bottom: 12px; }
.wbss-step__title {
    font-size: 18px; font-weight: 700; color: var(--wbss-dark); margin: 0 0 8px;
}
.wbss-step__desc {
    font-size: 14px; color: var(--wbss-gray); margin: 0; line-height: 1.6;
}
.wbss-steps__connector {
    display: flex; align-items: center;
    color: var(--wbss-gray-light); font-size: 30px;
}

/* ==========================================================
   SECTION TITLES
   ========================================================== */
.wbss-section-header { text-align: center; max-width: 650px; margin: 0 auto 40px; }
.wbss-section-title {
    font-size: 36px; font-weight: 800; color: var(--wbss-dark);
    margin: 0 0 12px; line-height: 1.2;
}
.wbss-section-title--light { color: var(--wbss-white); }
.wbss-section-subtitle {
    font-size: 16px; color: var(--wbss-gray); margin: 0; line-height: 1.6;
}

/* ==========================================================
   TESTIMONIALS — with amounts, locations like top sites
   ========================================================== */
.wbss-testimonials { padding: 80px 24px; background: var(--wbss-white); }
.wbss-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wbss-testimonial-card {
    background: var(--wbss-off-white); border-radius: var(--wbss-radius);
    padding: 32px 28px; border: 1px solid var(--wbss-gray-light);
    transition: box-shadow var(--wbss-transition);
}
.wbss-testimonial-card:hover { box-shadow: var(--wbss-shadow-lg); }
.wbss-testimonial-card__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.wbss-testimonial-card__stars { color: var(--wbss-green); font-size: 18px; letter-spacing: 2px; }
.wbss-testimonial-card__verified {
    font-size: 11px; color: var(--wbss-green); font-weight: 600;
    display: flex; align-items: center; gap: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.wbss-testimonial-card__text {
    font-size: 15px; color: var(--wbss-gray); margin: 0 0 18px;
    line-height: 1.65; font-style: italic;
}
.wbss-testimonial-card__footer { display: flex; align-items: center; justify-content: space-between; }
.wbss-testimonial-card__author {
    font-weight: 600; font-size: 14px; color: var(--wbss-dark);
}
.wbss-testimonial-card__location { font-size: 12px; color: var(--wbss-gray); }
.wbss-testimonial-card__amount {
    font-size: 13px; font-weight: 700; color: var(--wbss-green);
    background: var(--wbss-green-light); padding: 4px 12px; border-radius: var(--wbss-radius-pill);
}

/* ==========================================================
   SERVICES GRID
   ========================================================== */
.wbss-services-grid { padding: 70px 24px; }
.wbss-services-grid__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wbss-service-card {
    text-align: center; text-decoration: none; color: var(--wbss-dark);
    background: var(--wbss-white); border-radius: var(--wbss-radius);
    overflow: hidden; box-shadow: var(--wbss-shadow);
    transition: transform var(--wbss-transition), box-shadow var(--wbss-transition);
}
.wbss-service-card:hover { transform: translateY(-5px); box-shadow: var(--wbss-shadow-lg); color: var(--wbss-dark); }
.wbss-service-card__img { aspect-ratio: 16/10; overflow: hidden; }
.wbss-service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.wbss-service-card:hover .wbss-service-card__img img { transform: scale(1.05); }
.wbss-service-card__title {
    font-size: 17px; font-weight: 700; margin: 0;
    padding: 18px 16px; text-decoration: none;
}

/* ==========================================================
   WHY CHOOSE US — trust-focused
   ========================================================== */
.wbss-why-choose { padding: 80px 24px; }
.wbss-why-choose__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wbss-why-choose__list { list-style: none; padding: 0; margin: 30px 0; }
.wbss-why-choose__list li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 22px; font-size: 15px; line-height: 1.55;
}
.wbss-why-choose__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--wbss-green-light); border-radius: 50%; font-size: 18px;
    color: var(--wbss-green);
}
.wbss-why-choose__image img { width: 100%; border-radius: var(--wbss-radius); }

/* ==========================================================
   REGULATORY / COMPLIANCE BADGES
   ========================================================== */
.wbss-compliance {
    padding: 50px 24px; background: var(--wbss-off-white);
    border-top: 1px solid var(--wbss-gray-light);
    border-bottom: 1px solid var(--wbss-gray-light);
}
.wbss-compliance__grid {
    display: flex; align-items: center; justify-content: center;
    gap: 50px; flex-wrap: wrap;
}
.wbss-compliance__item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--wbss-gray);
}
.wbss-compliance__icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--wbss-white); border: 1px solid var(--wbss-gray-light);
    border-radius: 50%; font-size: 20px;
}

/* ==========================================================
   BRANDS ROW
   ========================================================== */
.wbss-brands { padding: 35px 24px; border-bottom: 1px solid var(--wbss-gray-light); }
.wbss-brands__row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 28px; align-items: center;
}
.wbss-brand {
    font-size: 12px; font-weight: 700; color: var(--wbss-gray-light);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* ==========================================================
   OUR SERVICES / CONTENT SECTION
   ========================================================== */
.wbss-our-services { padding: 80px 24px; background: var(--wbss-off-white); }
.wbss-our-services__layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.wbss-our-services__image img { width: 100%; border-radius: var(--wbss-radius); }
.wbss-our-services__content h2 { font-size: 30px; margin: 0 0 16px; }
.wbss-our-services__content ul { padding-left: 0; list-style: none; }
.wbss-our-services__content li {
    margin-bottom: 10px; font-size: 15px; padding-left: 28px;
    position: relative;
}
.wbss-our-services__content li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--wbss-green); font-weight: 700;
}

.wbss-services-full { padding: 70px 24px; }
.wbss-popular-areas { padding: 70px 24px; }
.wbss-contact-services { padding: 60px 24px; }
.wbss-blog-links { padding: 60px 24px; }
.wbss-services-areas { padding: 60px 24px; }
.wbss-areas-context { padding: 40px 24px; }
.wbss-page-links { padding: 30px 24px; }
.wbss-process { padding: 80px 24px; }
.wbss-process__content h2 { font-size: 30px; margin: 0 0 25px; }
.wbss-process__step { margin-bottom: 18px; font-size: 16px; line-height: 1.6; }

/* ==========================================================
   FAQ — accordion
   ========================================================== */
.wbss-faq { padding: 70px 24px; background: var(--wbss-off-white); }
.wbss-faq__list { max-width: 800px; margin: 0 auto; }
.wbss-faq__item {
    background: var(--wbss-white); border-radius: var(--wbss-radius-sm);
    margin-bottom: 10px; overflow: hidden;
    border: 1px solid var(--wbss-gray-light);
}
.wbss-faq__question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 20px 24px; background: none; border: none;
    font-size: 16px; font-weight: 600; font-family: var(--wbss-font);
    color: var(--wbss-dark); cursor: pointer; text-align: left; gap: 16px;
}
.wbss-faq__question:hover { background: rgba(0,0,0,0.015); }
.wbss-faq__toggle {
    font-size: 22px; font-weight: 300; flex-shrink: 0;
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: var(--wbss-light); border-radius: 50%;
    transition: transform 0.25s, background 0.25s;
}
.wbss-faq__item.active .wbss-faq__toggle {
    transform: rotate(45deg); background: var(--wbss-green); color: var(--wbss-white);
}
.wbss-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.wbss-faq__answer p { padding: 0 24px 20px; color: var(--wbss-gray); font-size: 15px; line-height: 1.7; margin: 0; }

/* ==========================================================
   CTA SECTIONS
   ========================================================== */
.wbss-cta-section { padding: 70px 24px; text-align: center; }
.wbss-cta-section--dark { background: var(--wbss-navy); }
.wbss-cta-section--green { background: var(--wbss-green); }

/* ==========================================================
   CONTACT SECTIONS
   ========================================================== */
.wbss-contact-section { padding: 80px 24px; background: var(--wbss-green-dark); color: var(--wbss-white); }
.wbss-contact-section__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.wbss-contact-section__info h2 { font-size: 30px; margin: 0 0 20px; color: var(--wbss-white); }
.wbss-contact-section__details { margin-bottom: 30px; font-size: 15px; line-height: 1.8; }
.wbss-contact-section .wbss-btn--outline { color: var(--wbss-white); border-color: var(--wbss-white); }
.wbss-contact-section .wbss-btn--outline:hover { background: var(--wbss-white); color: var(--wbss-green-dark); }
.wbss-contact-section__map iframe { border-radius: var(--wbss-radius); }

.wbss-contact-page { padding: 60px 24px; }
.wbss-contact-page__layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.wbss-contact-page__form-wrap h2 { font-size: 28px; margin: 0 0 8px; }
.wbss-contact-page__info-heading { font-size: 28px; margin: 0 0 20px; color: var(--wbss-dark); font-weight: 800; }
.wbss-contact-page__card {
    background: var(--wbss-off-white); padding: 24px 28px;
    border-radius: var(--wbss-radius); margin-bottom: 16px;
    border: 1px solid var(--wbss-gray-light);
    transition: transform var(--wbss-transition), box-shadow var(--wbss-transition);
}
.wbss-contact-page__card:hover { transform: translateY(-2px); box-shadow: var(--wbss-shadow); }
.wbss-contact-page__card-icon { font-size: 28px; margin-bottom: 10px; }
.wbss-contact-page__card h3 { margin: 0 0 10px; font-size: 17px; }
.wbss-contact-page__card p { margin: 5px 0; font-size: 15px; }
.wbss-contact-page__card--highlight {
    background: var(--wbss-green); border-color: var(--wbss-green);
    color: var(--wbss-white);
}
.wbss-contact-page__card--highlight h3 { color: var(--wbss-white); }
.wbss-contact-page__card--highlight p { color: rgba(255,255,255,0.9); }
.wbss-contact-section__trust {
    display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px;
}
.wbss-contact-section__trust span {
    font-size: 13px; padding: 6px 14px;
    background: rgba(255,255,255,0.15); border-radius: var(--wbss-radius-pill);
}
.wbss-map-section { width: 100%; overflow: hidden; }
.wbss-map-section iframe { display: block; width: 100%; max-width: 100%; }
.wbss-contact-section__map { overflow: hidden; }
.wbss-contact-section__map iframe { max-width: 100%; }

/* ==========================================================
   CONTENT SECTION (service pages, area pages)
   ========================================================== */
.wbss-content-section { padding: 60px 24px; }
.wbss-content-section h2 { font-size: 28px; margin: 0 0 16px; }
.wbss-content-section h3 { font-size: 21px; margin: 30px 0 10px; }
.wbss-content-section p { color: var(--wbss-gray); font-size: 16px; line-height: 1.75; }
.wbss-content-section ul, .wbss-content-section ol { padding-left: 24px; color: var(--wbss-gray); }
.wbss-content-section li { margin-bottom: 8px; font-size: 15px; }
.wbss-content-section__layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start;
}
.wbss-sidebar-card {
    background: var(--wbss-off-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius); padding: 28px; margin-bottom: 20px;
}
.wbss-sidebar-card h4 { font-size: 17px; margin: 0 0 12px; color: var(--wbss-dark); }
.wbss-sidebar-card p { font-size: 15px; margin: 4px 0; }
.wbss-sidebar-card a { font-size: 22px; font-weight: 700; color: var(--wbss-green); }
.wbss-sidebar-card a:hover { color: var(--wbss-green-dark); }
.wbss-sidebar-card__list {
    list-style: none; padding: 0; margin: 0;
}
.wbss-sidebar-card__list li {
    padding: 6px 0; font-size: 14px; color: var(--wbss-gray);
    border-bottom: 1px solid var(--wbss-gray-light);
}
.wbss-sidebar-card__list li:last-child { border-bottom: none; }
.wbss-sidebar-card--green {
    background: var(--wbss-green); border-color: var(--wbss-green);
    color: var(--wbss-white);
}
.wbss-sidebar-card--green h4 { color: var(--wbss-white); }
.wbss-sidebar-card--green p { color: rgba(255,255,255,0.85); }

/* ==========================================================
   AREAS INDEX
   ========================================================== */
/* Areas Index: Jump nav */
.wbss-areas-jump { padding: 50px 24px 30px; }
.wbss-areas-jump__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px;
}
.wbss-areas-jump__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; background: var(--wbss-navy); color: var(--wbss-white);
    border-radius: var(--wbss-radius); text-decoration: none;
    font-weight: 600; font-size: 15px;
    transition: all var(--wbss-transition);
}
.wbss-areas-jump__link:hover { background: var(--wbss-green); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,182,122,0.3); }
.wbss-areas-jump__count {
    font-size: 12px; font-weight: 400; opacity: 0.6;
    background: rgba(255,255,255,0.1); padding: 3px 10px; border-radius: var(--wbss-radius);
}
/* Areas Index: Service blocks */
.wbss-areas-service-block { padding: 50px 24px; border-top: 1px solid var(--wbss-gray-light); }
.wbss-areas-service-block:nth-child(even) { background: var(--wbss-off-white); }
.wbss-areas-service-block__header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin-bottom: 8px;
}
.wbss-areas-service-block__header h2 { margin: 0; font-size: 26px; }
.wbss-areas-service-block__desc { color: var(--wbss-gray); margin: 0 0 20px; font-size: 15px; }
.wbss-areas-all-services { padding: 60px 24px; background: var(--wbss-off-white); }
/* Areas page original */
.wbss-areas-page { padding: 60px 24px; }
.wbss-areas-page__region { margin-bottom: 40px; }
.wbss-areas-page__region h2 {
    font-size: 24px; margin: 0 0 18px;
    padding-bottom: 10px; border-bottom: 3px solid var(--wbss-green);
    display: inline-block;
}
.wbss-areas-page__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.wbss-areas-page__link {
    display: block; padding: 12px 16px;
    background: var(--wbss-off-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius-sm); font-size: 14px;
    color: var(--wbss-dark); transition: all var(--wbss-transition);
}
.wbss-areas-page__link:hover { background: var(--wbss-green); color: var(--wbss-white); border-color: var(--wbss-green); }

/* ==========================================================
   BLOG
   ========================================================== */
.wbss-blog { padding: 60px 24px; }
.wbss-blog__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.wbss-blog-card {
    background: var(--wbss-white); border-radius: var(--wbss-radius);
    overflow: hidden; box-shadow: var(--wbss-shadow); border: 1px solid var(--wbss-gray-light);
    transition: transform var(--wbss-transition), box-shadow var(--wbss-transition);
}
.wbss-blog-card:hover { transform: translateY(-3px); box-shadow: var(--wbss-shadow-lg); }
.wbss-blog-card__img img { width: 100%; height: 220px; object-fit: cover; }
.wbss-blog-card__body { padding: 24px; }
.wbss-blog-card__date { font-size: 12px; color: var(--wbss-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.wbss-blog-card__title { font-size: 19px; margin: 8px 0 12px; line-height: 1.35; }
.wbss-blog-card__title a { color: var(--wbss-dark); }
.wbss-blog-card__title a:hover { color: var(--wbss-green); }
.wbss-blog-card__excerpt { font-size: 14px; color: var(--wbss-gray); margin: 0 0 14px; }
.wbss-blog-card__read { font-size: 14px; font-weight: 600; color: var(--wbss-green); }

.wbss-article { padding: 40px 24px 60px; }
.wbss-article__featured { margin-bottom: 30px; border-radius: var(--wbss-radius); overflow: hidden; }
.wbss-article__featured img { width: 100%; }
.wbss-article__content { font-size: 17px; line-height: 1.8; color: var(--wbss-gray); }
.wbss-article__content h2 { font-size: 26px; margin: 35px 0 12px; }
.wbss-article__content h3 { font-size: 22px; margin: 30px 0 10px; }
.wbss-article__content p { margin: 0 0 18px; }
.wbss-article__content img { border-radius: var(--wbss-radius); margin: 20px 0; }

.wbss-pagination { padding: 40px 0; text-align: center; }
.wbss-pagination .page-numbers {
    display: inline-block; padding: 10px 16px; margin: 0 3px;
    border-radius: var(--wbss-radius-sm); font-size: 14px; font-weight: 600;
    color: var(--wbss-dark); background: var(--wbss-off-white);
    text-decoration: none; border: 1px solid var(--wbss-gray-light);
}
.wbss-pagination .page-numbers.current,
.wbss-pagination .page-numbers:hover { background: var(--wbss-green); color: var(--wbss-white); border-color: var(--wbss-green); }

/* ==========================================================
   SERVICE AREAS GRID (on service pages)
   ========================================================== */
.wbss-service-areas { padding: 60px 24px; background: var(--wbss-off-white); }
.wbss-service-areas__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px;
}
.wbss-service-areas__link {
    display: block; padding: 14px 18px;
    background: var(--wbss-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius-sm); font-size: 14px;
    color: var(--wbss-dark); transition: all var(--wbss-transition);
    text-decoration: none;
}
.wbss-service-areas__link:hover {
    background: var(--wbss-green); color: var(--wbss-white);
    border-color: var(--wbss-green); transform: translateY(-1px);
}

/* ==========================================================
   OTHER SERVICES GRID
   ========================================================== */
.wbss-other-services { padding: 60px 24px; }
.wbss-other-services__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.wbss-other-services__card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: var(--wbss-off-white);
    border: 1px solid var(--wbss-gray-light); border-radius: var(--wbss-radius);
    text-decoration: none; color: var(--wbss-dark);
    transition: all var(--wbss-transition);
}
.wbss-other-services__card:hover {
    background: var(--wbss-navy); color: var(--wbss-white);
    border-color: var(--wbss-navy); transform: translateY(-2px);
    box-shadow: var(--wbss-shadow-lg);
}
.wbss-other-services__name { font-size: 15px; font-weight: 600; }
.wbss-other-services__arrow { font-size: 22px; font-weight: 300; opacity: 0.5; }
.wbss-other-services__card:hover .wbss-other-services__arrow { opacity: 1; color: var(--wbss-green); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.wbss-btn {
    display: inline-block; padding: 16px 36px;
    font-size: 15px; font-weight: 700; font-family: var(--wbss-font);
    border-radius: var(--wbss-radius); text-decoration: none;
    text-align: center; transition: all var(--wbss-transition);
    cursor: pointer; border: 2px solid transparent; letter-spacing: 0.5px;
}
.wbss-btn--green { background: var(--wbss-green); color: var(--wbss-white); border-color: var(--wbss-green); }
.wbss-btn--green:hover { background: var(--wbss-green-dark); color: var(--wbss-white); }
.wbss-btn--gold { background: var(--wbss-gold); color: var(--wbss-white); border-color: var(--wbss-gold); }
.wbss-btn--gold:hover { background: var(--wbss-gold-hover); color: var(--wbss-white); }
.wbss-btn--outline { background: transparent; color: var(--wbss-dark); border-color: var(--wbss-dark); }
.wbss-btn--outline:hover { background: var(--wbss-dark); color: var(--wbss-white); }
.wbss-btn--white { background: var(--wbss-white); color: var(--wbss-dark); }
.wbss-btn--white:hover { background: var(--wbss-off-white); color: var(--wbss-dark); }
.wbss-btn:focus-visible { outline: 3px solid var(--wbss-gold); outline-offset: 2px; }
.wbss-btn--sm { padding: 10px 18px; font-size: 13px; }
.wbss-btn--lg { padding: 20px 48px; font-size: 16px; }

/* ==========================================================
   FOOTER — mega footer for SEO crawlability
   ========================================================== */
.wbss-footer {
    background: var(--wbss-navy);
    color: var(--wbss-footer-text);
    padding: 60px 0 0;
}
.wbss-footer__mega {
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr 1.35fr;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Footer column base */
.wbss-footer__col {
    min-width: 0; /* prevent grid blowout */
}

/* Headings */
.wbss-footer__heading {
    color: var(--wbss-white);
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 12px;
}
.wbss-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--wbss-green);
    border-radius: 2px;
}
.wbss-footer__heading--social {
    margin-top: 28px;
}
.wbss-footer__heading--contact {
    margin-top: 24px;
}

/* Footer lists */
.wbss-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wbss-footer__list li {
    margin-bottom: 6px;
}
.wbss-footer__list a {
    color: var(--wbss-footer-text);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--wbss-transition), padding-left var(--wbss-transition);
    display: inline-block;
    line-height: 1.5;
}
.wbss-footer__list a:hover {
    color: var(--wbss-green);
    padding-left: 3px;
}

/* View All Areas link */
.wbss-footer__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wbss-green);
    text-decoration: none;
    transition: all var(--wbss-transition);
}
.wbss-footer__view-all:hover {
    color: var(--wbss-white);
}
.wbss-footer__view-all svg {
    transition: transform var(--wbss-transition);
}
.wbss-footer__view-all:hover svg {
    transform: translateX(3px);
}

/* Footer paragraphs */
.wbss-footer p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    color: var(--wbss-footer-text);
}
.wbss-footer a {
    color: var(--wbss-green);
    text-decoration: none;
    transition: color var(--wbss-transition);
}
.wbss-footer a:hover {
    color: var(--wbss-white);
}

/* About text */
.wbss-footer__about-text {
    margin-bottom: 16px !important;
    line-height: 1.75 !important;
}

/* Trust Badges — proper styled badges */
.wbss-footer__trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    margin-bottom: 4px;
}
.wbss-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    background: rgba(0, 182, 122, 0.08);
    border: 1px solid rgba(0, 182, 122, 0.15);
    border-radius: var(--wbss-radius-xs);
    color: var(--wbss-green);
    letter-spacing: 0.3px;
}
.wbss-footer__badge svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Contact address block */
.wbss-footer__address {
    font-style: normal;
    margin-bottom: 12px;
}
.wbss-footer__address p {
    font-size: 13px;
    color: var(--wbss-footer-text);
    line-height: 1.6;
}

/* Contact details */
.wbss-footer__contact-details {
    margin-top: 0;
}
.wbss-footer__phone-line,
.wbss-footer__email-line {
    margin: 4px 0 !important;
    font-size: 13px !important;
}
.wbss-footer__contact-label {
    font-weight: 700;
    color: var(--wbss-footer-label);
    margin-right: 4px;
}
.wbss-footer__phone-line a,
.wbss-footer__email-line a {
    color: var(--wbss-green);
    font-weight: 500;
}
.wbss-footer__phone-line a:hover,
.wbss-footer__email-line a:hover {
    color: var(--wbss-white);
}

/* Hours line */
.wbss-footer__hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px !important;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--wbss-radius-xs);
    font-size: 12px !important;
    color: var(--wbss-footer-text) !important;
    font-weight: 500;
}
.wbss-footer__hours svg {
    flex-shrink: 0;
    opacity: 0.6;
    color: var(--wbss-green);
}

/* Social media icons */
.wbss-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.wbss-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--wbss-footer-text);
    transition: all var(--wbss-transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.wbss-footer__social-link:hover {
    background: var(--wbss-green);
    border-color: var(--wbss-green);
    color: var(--wbss-white);
    transform: translateY(-2px);
}
.wbss-footer__social-link svg {
    fill: currentColor;
}

/* Bottom bar */
.wbss-footer__bottom {
    margin-top: 48px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.15);
}
.wbss-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    gap: 20px;
}
.wbss-footer__bottom p {
    font-size: 12px;
    color: var(--wbss-footer-muted);
}
.wbss-footer__bottom-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wbss-footer__bottom-brand img {
    border-radius: var(--wbss-radius-sm);
    flex-shrink: 0;
}
.wbss-footer__bottom-brand p {
    margin: 0;
    line-height: 1.5;
}
.wbss-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.wbss-footer__bottom-links a {
    font-size: 12px;
    color: var(--wbss-gray);
    text-decoration: none;
    transition: color var(--wbss-transition);
    white-space: nowrap;
}
.wbss-footer__bottom-links a:hover {
    color: var(--wbss-green);
}

/* Back to Top button */
.wbss-footer__back-to-top {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    color: var(--wbss-green) !important;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--wbss-radius-xs);
    border: 1px solid rgba(0, 182, 122, 0.2);
    background: rgba(0, 182, 122, 0.06);
    transition: all var(--wbss-transition);
}
.wbss-footer__back-to-top:hover {
    background: var(--wbss-green);
    color: var(--wbss-white) !important;
    border-color: var(--wbss-green);
}
.wbss-footer__back-to-top svg {
    transition: transform var(--wbss-transition);
}
.wbss-footer__back-to-top:hover svg {
    transform: translateY(-2px);
}

/* ==========================================================
   WHATSAPP WIDGET
   ========================================================== */
.wbss-whatsapp { position: fixed; bottom: 25px; right: 25px; z-index: 9999; }
.wbss-whatsapp__btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--wbss-whatsapp); color: var(--wbss-white);
    padding: 14px 22px; border-radius: var(--wbss-radius-pill); text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s; font-weight: 600;
}
.wbss-whatsapp__btn:hover { background: var(--wbss-whatsapp-hover); color: var(--wbss-white); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
.wbss-whatsapp__icon { width: 28px; height: 28px; color: var(--wbss-white); }
.wbss-whatsapp__label { font-size: 14px; }

/* ==========================================================
   SERVICES INDEX PAGE
   ========================================================== */
.wbss-services-index { padding: 60px 24px; }
a.wbss-service-detail-card {
    display: block; text-decoration: none; color: inherit;
    background: var(--wbss-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius); margin-bottom: 18px;
    overflow: hidden; transition: all var(--wbss-transition);
}
a.wbss-service-detail-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border-color: var(--wbss-green); transform: translateY(-2px);
}
a.wbss-service-detail-card:hover h3 { color: var(--wbss-green); }
.wbss-service-detail-card__header {
    display: flex; align-items: center; gap: 20px;
    padding: 28px 30px;
}
.wbss-service-detail-card__icon { font-size: 40px; flex-shrink: 0; }
.wbss-service-detail-card__header h3 {
    margin: 0 0 6px; font-size: 22px; color: var(--wbss-dark);
    transition: color var(--wbss-transition);
}
.wbss-service-detail-card__header p { margin: 0; color: var(--wbss-gray); font-size: 14px; line-height: 1.6; }
.wbss-service-detail-card__header > div { flex: 1; }
/* Services links section */
.wbss-services-links { padding: 60px 24px; background: var(--wbss-off-white); }
.wbss-services-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wbss-services-links__card {
    background: var(--wbss-white); padding: 30px; border-radius: var(--wbss-radius);
    border: 1px solid var(--wbss-gray-light); text-align: center;
}
.wbss-services-links__card h3 { margin: 0 0 10px; font-size: 20px; }
.wbss-services-links__card p { color: var(--wbss-gray); margin: 0 0 18px; font-size: 14px; }

/* ==========================================================
   SITEMAP PAGE
   ========================================================== */
.wbss-sitemap { padding: 50px 24px 70px; }
.wbss-sitemap__section { margin-bottom: 40px; }
.wbss-sitemap__section h2 {
    font-size: 22px; margin: 0 0 14px; padding-bottom: 10px;
    border-bottom: 2px solid var(--wbss-green); color: var(--wbss-dark);
}
.wbss-sitemap__list { list-style: none; padding: 0; margin: 0; }
.wbss-sitemap__list li { margin-bottom: 6px; }
.wbss-sitemap__list a {
    color: var(--wbss-dark); text-decoration: none; font-size: 14px;
    transition: color var(--wbss-transition);
}
.wbss-sitemap__list a:hover { color: var(--wbss-green); }
.wbss-sitemap__list--grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 16px;
}

/* (footer bottom-brand styles moved into main FOOTER section above) */

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* ----------------------------------------------------------
   BREAKPOINT: 1200px — Large tablets / small desktops
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .wbss-guarantees__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-services-grid__items { grid-template-columns: repeat(2, 1fr); }
    .wbss-other-services__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-service-areas__grid { grid-template-columns: repeat(3, 1fr); }
    .wbss-areas-page__grid { grid-template-columns: repeat(3, 1fr); }
    .wbss-sitemap__list--grid { grid-template-columns: repeat(3, 1fr); }
    .wbss-services-links__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-footer__mega { gap: 30px; }
    .wbss-why-choose__layout,
    .wbss-our-services__layout { gap: 40px; }
    .wbss-hero__title { font-size: 38px; }
}

/* ----------------------------------------------------------
   BREAKPOINT: 968px — Tablets / mobile nav trigger
   ---------------------------------------------------------- */
@media (max-width: 968px) {
    /* Show mobile actions, hide desktop phone */
    .wbss-header__mobile-actions { display: flex; }
    .wbss-header__toggle { display: flex; }
    .wbss-header__phone { display: none; }

    /* Mobile nav panel */
    .wbss-header__nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--wbss-navy);
        padding: 0; gap: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        max-height: 0; overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        opacity: 0;
    }
    .wbss-header__nav.is-open {
        max-height: 85vh; overflow-y: auto; opacity: 1;
        box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }
    .wbss-header__menu {
        flex-direction: column; gap: 0;
        padding: 12px 0;
    }
    .wbss-header__menu > li { width: 100%; }
    .wbss-header__menu > li > a,
    .wbss-mega-parent__trigger {
        padding: 14px 24px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%; border-radius: 0 !important;
        font-size: 15px !important;
        min-height: 48px;
    }
    /* Active indicator on mobile — left border instead of bottom */
    .wbss-header__menu > li > a.is-active::after,
    .wbss-mega-parent.is-active > .wbss-mega-parent__trigger::after {
        bottom: 0; top: 0; left: 0; right: auto;
        width: 3px; height: auto;
    }
    /* CTA button on mobile */
    .wbss-header__cta-item { padding: 16px 24px; margin-left: 0; }
    .wbss-header__cta-btn {
        text-align: center; border-bottom: none !important;
        width: 100%; justify-content: center;
        padding: 14px 24px !important; font-size: 15px !important;
    }

    /* Mega dropdowns on mobile */
    .wbss-mega-parent { width: 100%; }
    .wbss-mega-dropdown {
        position: static; transform: none;
        min-width: 0; max-width: 100%; padding-top: 0;
        visibility: hidden; opacity: 0; pointer-events: none;
        max-height: 0; overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
    }
    .wbss-mega-parent.is-open > .wbss-mega-dropdown {
        visibility: visible; opacity: 1; pointer-events: auto;
        max-height: 2000px;
        transform: none;
    }
    .wbss-mega-parent.is-open > .wbss-mega-parent__trigger {
        background: rgba(255,255,255,0.04);
    }
    .wbss-mega-dropdown__inner {
        flex-direction: column; box-shadow: none; border: none;
        background: rgba(255,255,255,0.03); border-radius: 0;
    }
    .wbss-mega-col {
        border-right: none; padding: 16px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.04); min-width: auto;
    }
    .wbss-mega-col--services, .wbss-mega-col--wide { min-width: auto; }
    .wbss-mega-col--cta {
        background: rgba(0,182,122,0.08);
        margin: 8px 16px; border-radius: var(--wbss-radius-sm);
        border-bottom: none;
    }
    .wbss-mega-col--cta .wbss-mega-cta h4 { color: var(--wbss-white); }
    .wbss-mega-col--cta .wbss-mega-cta p { color: rgba(255,255,255,0.6); }
    .wbss-mega-col--cta .wbss-mega-cta__phone { color: rgba(255,255,255,0.5); }
    .wbss-mega-areas-grid { grid-template-columns: 1fr 1fr; }
    .wbss-mega-link {
        color: rgba(255,255,255,0.7) !important; padding: 8px 10px;
        min-height: 44px; display: flex; align-items: center;
    }
    .wbss-mega-link:hover { color: var(--wbss-green) !important; background: rgba(255,255,255,0.04); }
    .wbss-mega-service-link {
        color: rgba(255,255,255,0.85) !important;
        padding: 10px 10px; min-height: 44px;
    }
    .wbss-mega-service-link__name { color: rgba(255,255,255,0.9); }
    .wbss-mega-service-link__desc { color: rgba(255,255,255,0.45); }
    .wbss-mega-service-link:hover { background: rgba(255,255,255,0.06); }
    .wbss-mega-service-link.is-current {
        background: rgba(0,182,122,0.12); border-left-color: var(--wbss-green);
    }
    .wbss-mega-col__title { color: var(--wbss-green); }

    /* Hero */
    .wbss-hero__title { font-size: 32px; }
    .wbss-hero__subtitle { font-size: 16px; }
    .wbss-hero--page { padding: 45px 24px 50px; }
    .wbss-hero--small { padding: 35px 24px 40px; }

    /* Section titles */
    .wbss-section-title { font-size: 30px; }

    /* Grids — collapse to appropriate columns */
    .wbss-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .wbss-services-grid__items { grid-template-columns: repeat(2, 1fr); }
    .wbss-testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .wbss-steps { flex-direction: column; align-items: center; gap: 20px; }
    .wbss-steps__connector { display: none; }
    .wbss-step { max-width: 420px; width: 100%; }

    /* Two-column layouts — stack */
    .wbss-why-choose__layout, .wbss-our-services__layout,
    .wbss-contact-section__layout, .wbss-contact-page__layout,
    .wbss-content-section__layout { grid-template-columns: 1fr; gap: 30px; }

    /* Footer */
    .wbss-footer__mega { grid-template-columns: 1fr 1fr; gap: 32px; }
    .wbss-footer__heading { margin-bottom: 14px; }
    .wbss-footer__heading--social { margin-top: 22px; }
    .wbss-footer__heading--contact { margin-top: 20px; }

    /* Areas */
    .wbss-areas-page__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-areas-jump__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-areas-service-block__header { flex-direction: column; align-items: flex-start; }

    /* Service detail card */
    .wbss-service-detail-card__header { flex-direction: column; text-align: center; }
    .wbss-service-detail-card__header .wbss-btn { margin-top: 12px; }

    /* Sitemap and service areas */
    .wbss-sitemap__list--grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-service-areas__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-other-services__grid { grid-template-columns: repeat(2, 1fr); }

    /* Blog */
    .wbss-blog__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

    /* Trust bar and compliance */
    .wbss-trust-bar__inner { gap: 16px; }
    .wbss-compliance__grid { gap: 25px; }

    /* Services links */
    .wbss-services-links__grid { grid-template-columns: 1fr; }

    /* Sections — reduce vertical padding */
    .wbss-guarantees { padding: 40px 24px; }
    .wbss-testimonials { padding: 60px 24px; }
    .wbss-how-it-works { padding: 60px 24px; }
    .wbss-services-grid { padding: 50px 24px; }
    .wbss-why-choose { padding: 60px 24px; }
    .wbss-our-services { padding: 60px 24px; }
    .wbss-faq { padding: 50px 24px; }
    .wbss-cta-section { padding: 50px 24px; }
    .wbss-contact-section { padding: 60px 24px; }
    .wbss-contact-page { padding: 40px 24px; }
    .wbss-content-section { padding: 40px 24px; }
    .wbss-service-areas { padding: 40px 24px; }
    .wbss-other-services { padding: 40px 24px; }
    .wbss-services-full { padding: 50px 24px; }
    .wbss-popular-areas { padding: 50px 24px; }
    .wbss-blog-links { padding: 40px 24px; }
    .wbss-contact-services { padding: 40px 24px; }
    .wbss-services-areas { padding: 40px 24px; }

    /* Quote section */
    .wbss-quote-section { padding: 40px 24px; }

    /* WhatsApp */
    .wbss-whatsapp__label { display: none; }
    .wbss-whatsapp__btn { padding: 14px; border-radius: 50%; }

    /* Map iframe */
    .wbss-contact-section__map iframe { height: 300px; }
    .wbss-map-section iframe { height: 300px; }
}

/* ----------------------------------------------------------
   BREAKPOINT: 768px — Large phones / small tablets
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    /* Hero */
    .wbss-hero { padding: 50px 20px 60px; }
    .wbss-hero--page { padding: 40px 20px 45px; }
    .wbss-hero--small { padding: 30px 20px 35px; }
    .wbss-hero__title { font-size: 28px; }
    .wbss-hero__subtitle { font-size: 15px; margin-bottom: 25px; }
    .wbss-hero__badge { font-size: 11px; padding: 5px 12px; }
    .wbss-hero__meta { font-size: 13px; flex-wrap: wrap; justify-content: center; }

    /* Section titles */
    .wbss-section-title { font-size: 26px; }
    .wbss-section-subtitle { font-size: 15px; }

    /* Guarantees — 2 col still works, reduce spacing */
    .wbss-guarantees__grid { gap: 16px; }
    .wbss-guarantee { padding: 20px 12px; }
    .wbss-guarantee__icon { width: 48px; height: 48px; font-size: 22px; }
    .wbss-guarantee__title { font-size: 14px; }
    .wbss-guarantee__text { font-size: 12px; }

    /* Stats */
    .wbss-stats { padding: 30px 20px; }
    .wbss-stats__number { font-size: 30px; }
    .wbss-stats__label { font-size: 11px; }

    /* Steps */
    .wbss-step { padding: 30px 24px; }

    /* Trust bar — wrap tighter */
    .wbss-trust-bar { padding: 10px 0; }
    .wbss-trust-bar__inner { gap: 12px; padding: 0 16px; }
    .wbss-trust-bar__item { font-size: 12px; }

    /* Blog cards */
    .wbss-blog-card__img img { height: 180px; }
    .wbss-blog-card__body { padding: 18px; }
    .wbss-blog-card__title { font-size: 17px; }

    /* FAQ — ensure tap targets */
    .wbss-faq__question { padding: 18px 20px; font-size: 15px; min-height: 48px; }
    .wbss-faq__answer p { padding: 0 20px 18px; font-size: 14px; }

    /* Contact page cards */
    .wbss-contact-page__card { padding: 20px 22px; }

    /* Content section */
    .wbss-content-section h2 { font-size: 24px; }
    .wbss-content-section h3 { font-size: 19px; }
    .wbss-content-section p { font-size: 15px; }

    /* Sidebar cards */
    .wbss-sidebar-card { padding: 22px; }

    /* Buttons */
    .wbss-btn { padding: 14px 28px; font-size: 14px; }
    .wbss-btn--lg { padding: 16px 32px; font-size: 15px; }

    /* Services grid — single column */
    .wbss-services-grid__items { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }

    /* Service detail card */
    .wbss-service-detail-card__header { padding: 22px; }
    .wbss-service-detail-card__header h3 { font-size: 19px; }

    /* Footer */
    .wbss-footer__bottom-inner { flex-wrap: wrap; gap: 16px; }

    /* Compliance */
    .wbss-compliance__grid { gap: 20px; }
    .wbss-compliance__item { font-size: 12px; gap: 8px; }
    .wbss-compliance__icon { width: 38px; height: 38px; font-size: 18px; }

    /* Breadcrumbs */
    .wbss-breadcrumbs { padding: 10px 0; font-size: 12px; }

    /* Pagination */
    .wbss-pagination .page-numbers { padding: 8px 12px; font-size: 13px; }

    /* Related bar */
    .wbss-related-bar { padding: 30px 20px; }
    .wbss-related-bar__links a { padding: 5px 12px; font-size: 12px; }

    /* Inline links */
    .wbss-inline-links { padding: 16px 20px; }

    /* Services index areas grid */
    .wbss-areas-jump__link { padding: 14px 18px; font-size: 14px; }

    /* Container padding */
    .wbss-container { padding: 0 20px; }

    /* Our services section text */
    .wbss-our-services__content h2 { font-size: 26px; }
}

/* ----------------------------------------------------------
   BREAKPOINT: 480px — Small phones (iPhone SE, etc.)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    /* Header adjustments for small screens */
    .wbss-header__inner { height: 58px; padding: 0 14px; }
    .wbss-header__logo-text { font-size: 12px; }
    .wbss-header__logo-icon { width: 34px; height: 34px; }
    .wbss-header__logo { gap: 8px; }
    .wbss-mega-areas-grid { grid-template-columns: 1fr; }

    /* Hero — compact for small screens */
    .wbss-hero { padding: 35px 14px 45px; }
    .wbss-hero--page { padding: 30px 14px 35px; }
    .wbss-hero--small { padding: 24px 14px 28px; }
    .wbss-hero__title { font-size: 24px; }
    .wbss-hero__subtitle { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
    .wbss-hero__badge { font-size: 10px; padding: 4px 10px; letter-spacing: 1px; }
    .wbss-hero__meta { font-size: 12px; gap: 8px; }

    /* Section titles */
    .wbss-section-title { font-size: 22px; }
    .wbss-section-subtitle { font-size: 14px; }
    .wbss-section-header { margin-bottom: 28px; }

    /* Quote form */
    .wbss-form__reg { font-size: 18px; padding: 14px 8px; letter-spacing: 2px; }
    .wbss-form__reg::placeholder { font-size: 16px; }
    .wbss-form__flag { padding: 8px 10px; min-width: 44px; }
    .wbss-form__next,
    .wbss-form__submit { padding: 16px; font-size: 15px; min-height: 48px; }
    .wbss-form__input { padding: 14px 14px; font-size: 16px; min-height: 48px; }
    .wbss-quote-form { max-width: 100%; }

    /* Guarantees — single column */
    .wbss-guarantees { padding: 30px 14px; }
    .wbss-guarantees__grid { grid-template-columns: 1fr; gap: 12px; }
    .wbss-guarantee { padding: 18px 14px; }

    /* Stats */
    .wbss-stats { padding: 25px 14px; }
    .wbss-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .wbss-stats__number { font-size: 24px; }
    .wbss-stats__label { font-size: 10px; }

    /* Steps */
    .wbss-how-it-works { padding: 40px 14px; }
    .wbss-step { padding: 24px 18px; max-width: 100%; }
    .wbss-step__number { width: 48px; height: 48px; font-size: 22px; }
    .wbss-step__icon { font-size: 28px; }
    .wbss-step__title { font-size: 16px; }
    .wbss-step__desc { font-size: 13px; }

    /* Trust bar */
    .wbss-trust-bar { padding: 8px 0; }
    .wbss-trust-bar__inner { gap: 8px; padding: 0 14px; }
    .wbss-trust-bar__item { font-size: 10px; gap: 4px; }
    .wbss-trust-bar__svg { width: 14px; height: 14px; }
    .wbss-trust-bar__stars { font-size: 13px; }
    .wbss-trust-bar__badge { font-size: 10px; padding: 3px 8px; }

    /* Grids — all single column */
    .wbss-areas-page__grid { grid-template-columns: 1fr; }
    .wbss-areas-jump__grid { grid-template-columns: 1fr; }
    .wbss-sitemap__list--grid { grid-template-columns: 1fr; }
    .wbss-service-areas__grid { grid-template-columns: 1fr; }
    .wbss-other-services__grid { grid-template-columns: 1fr; }

    /* Service detail card */
    .wbss-service-detail-card__header { padding: 18px 16px; }
    .wbss-service-detail-card__icon { font-size: 32px; }
    .wbss-service-detail-card__header h3 { font-size: 18px; }
    .wbss-service-detail-card__header p { font-size: 13px; }

    /* Testimonials */
    .wbss-testimonials { padding: 40px 14px; }
    .wbss-testimonial-card { padding: 22px 18px; }
    .wbss-testimonial-card__text { font-size: 14px; }
    .wbss-testimonial-card__footer { flex-direction: column; align-items: flex-start; gap: 10px; }
    .wbss-testimonial-card__amount { align-self: flex-end; }

    /* Why choose us */
    .wbss-why-choose { padding: 40px 14px; }
    .wbss-why-choose__list li { font-size: 14px; gap: 10px; margin-bottom: 16px; }
    .wbss-why-choose__icon { width: 36px; height: 36px; font-size: 16px; }

    /* Our services */
    .wbss-our-services { padding: 40px 14px; }
    .wbss-our-services__content h2 { font-size: 22px; }
    .wbss-our-services__content li { font-size: 14px; }

    /* FAQ */
    .wbss-faq { padding: 40px 14px; }
    .wbss-faq__question { padding: 16px; font-size: 14px; gap: 12px; }
    .wbss-faq__toggle { width: 26px; height: 26px; font-size: 20px; }
    .wbss-faq__answer p { padding: 0 16px 16px; font-size: 14px; }

    /* CTA sections */
    .wbss-cta-section { padding: 40px 14px; }

    /* Contact */
    .wbss-contact-section { padding: 40px 14px; }
    .wbss-contact-section__info h2 { font-size: 24px; }
    .wbss-contact-section__map iframe { height: 250px; }
    .wbss-contact-page { padding: 30px 14px; }
    .wbss-contact-page__layout { gap: 24px; }
    .wbss-contact-page__form-wrap h2 { font-size: 22px; }
    .wbss-contact-page__card { padding: 18px 16px; }
    .wbss-contact-page__card h3 { font-size: 15px; }
    .wbss-contact-page__card p { font-size: 14px; }
    .wbss-contact-section__trust span { font-size: 12px; padding: 5px 10px; }

    /* Content sections */
    .wbss-content-section { padding: 30px 14px; }
    .wbss-content-section h2 { font-size: 22px; }
    .wbss-content-section h3 { font-size: 18px; }
    .wbss-content-section p { font-size: 14px; }
    .wbss-content-section li { font-size: 14px; }
    .wbss-content-section ul, .wbss-content-section ol { padding-left: 18px; }

    /* Sidebar */
    .wbss-sidebar-card { padding: 18px 16px; }
    .wbss-sidebar-card h4 { font-size: 15px; }
    .wbss-sidebar-card p { font-size: 14px; }

    /* Blog */
    .wbss-blog { padding: 40px 14px; }
    .wbss-blog-card__img img { height: 160px; }
    .wbss-blog-card__body { padding: 16px; }
    .wbss-blog-card__title { font-size: 16px; }
    .wbss-blog-card__excerpt { font-size: 13px; }
    .wbss-blog-card__read { font-size: 13px; }

    /* Article */
    .wbss-article { padding: 30px 14px 40px; }
    .wbss-article__content { font-size: 16px; line-height: 1.7; }
    .wbss-article__content h2 { font-size: 22px; }
    .wbss-article__content h3 { font-size: 19px; }

    /* Buttons */
    .wbss-btn { padding: 14px 24px; font-size: 14px; width: 100%; }
    .wbss-btn--lg { padding: 16px 28px; font-size: 14px; }
    .wbss-btn--sm { padding: 10px 16px; font-size: 12px; width: auto; }
    .wbss-btn--outline { width: auto; }

    /* Brands row */
    .wbss-brands { padding: 20px 14px; }
    .wbss-brands__row { gap: 16px; }
    .wbss-brand { font-size: 10px; letter-spacing: 1px; }

    /* Compliance */
    .wbss-compliance { padding: 30px 14px; }
    .wbss-compliance__grid { gap: 16px; }
    .wbss-compliance__item { font-size: 11px; }
    .wbss-compliance__icon { width: 36px; height: 36px; font-size: 16px; }

    /* Sections with no explicit padding at this width */
    .wbss-service-areas { padding: 30px 14px; }
    .wbss-other-services { padding: 30px 14px; }
    .wbss-services-full { padding: 40px 14px; }
    .wbss-popular-areas { padding: 40px 14px; }
    .wbss-services-index { padding: 40px 14px; }
    .wbss-areas-jump { padding: 30px 14px 20px; }
    .wbss-areas-service-block { padding: 30px 14px; }
    .wbss-areas-all-services { padding: 40px 14px; }
    .wbss-blog-links { padding: 30px 14px; }
    .wbss-contact-services { padding: 30px 14px; }
    .wbss-services-areas { padding: 30px 14px; }
    .wbss-areas-context { padding: 24px 14px; }
    .wbss-quote-section { padding: 30px 14px; }
    .wbss-sitemap { padding: 30px 14px 50px; }
    .wbss-related-bar { padding: 24px 14px; }
    .wbss-breadcrumbs { padding: 8px 0; font-size: 11px; }

    /* Areas jump links */
    .wbss-areas-jump__link { padding: 14px 16px; font-size: 13px; }
    .wbss-areas-jump__count { font-size: 11px; }

    /* Areas page links */
    .wbss-areas-page__link { padding: 10px 14px; font-size: 13px; }
    .wbss-areas-service-block__header h2 { font-size: 20px; }
    .wbss-areas-service-block__desc { font-size: 14px; }

    /* Service areas links */
    .wbss-service-areas__link { padding: 12px 14px; font-size: 13px; min-height: 44px; display: flex; align-items: center; }

    /* Other services cards */
    .wbss-other-services__card { padding: 16px 18px; min-height: 48px; }
    .wbss-other-services__name { font-size: 14px; }

    /* Footer */
    .wbss-footer { padding: 40px 0 0; }
    .wbss-footer__mega { grid-template-columns: 1fr; gap: 24px; padding: 0 14px; }
    .wbss-footer__col { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .wbss-footer__col:last-child { border-bottom: none; padding-bottom: 0; }
    .wbss-footer__social { justify-content: flex-start; }
    .wbss-footer__trust-badges { justify-content: flex-start; }
    .wbss-footer__bottom { padding: 16px 14px; }
    .wbss-footer__bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
    .wbss-footer__bottom-brand { flex-direction: column; text-align: center; gap: 8px; }
    .wbss-footer__bottom-brand img { margin: 0 auto; }
    .wbss-footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .wbss-footer__bottom-links a { font-size: 11px; }
    .wbss-footer__back-to-top { font-size: 11px; }

    /* Pagination */
    .wbss-pagination .page-numbers { padding: 8px 10px; font-size: 12px; margin: 0 2px; }

    /* WhatsApp */
    .wbss-whatsapp { bottom: 16px; right: 16px; }
    .wbss-whatsapp__btn { padding: 12px; }
    .wbss-whatsapp__icon { width: 24px; height: 24px; }

    /* Container */
    .wbss-container { padding: 0 14px; }
    .wbss-container--wide { padding: 0 14px; }

    /* Sitemap */
    .wbss-sitemap__section h2 { font-size: 18px; }

    /* Context links */
    .wbss-context-links { font-size: 12px; }

    /* Inline links */
    .wbss-inline-links { padding: 14px 16px; }
    .wbss-inline-links h4,
    .wbss-inline-links__title { font-size: 14px; }
    .wbss-inline-links li a { font-size: 12px; padding: 4px 10px; }
}

/* ----------------------------------------------------------
   BREAKPOINT: 360px — Extra-small phones (iPhone SE 1st gen)
   ---------------------------------------------------------- */
@media (max-width: 360px) {
    .wbss-header__inner { padding: 0 10px; }
    .wbss-header__logo-text { font-size: 11px; }
    .wbss-header__logo-icon { width: 30px; height: 30px; }
    .wbss-hero__title { font-size: 21px; }
    .wbss-hero__subtitle { font-size: 13px; }
    .wbss-section-title { font-size: 20px; }
    .wbss-form__reg { font-size: 16px; letter-spacing: 1px; }
    .wbss-stats__number { font-size: 20px; }
    .wbss-container { padding: 0 10px; }
    .wbss-container--wide { padding: 0 10px; }
    .wbss-trust-bar__item:nth-child(n+4) { display: none; }
}

/* ==========================================================
   BREADCRUMBS
   ========================================================== */
.wbss-breadcrumbs {
    padding: 12px 0; font-size: 13px;
    background: var(--wbss-off-white); border-bottom: 1px solid var(--wbss-gray-light);
}
.wbss-breadcrumbs a { color: var(--wbss-gray); text-decoration: none; }
.wbss-breadcrumbs a:hover { color: var(--wbss-green); }
.wbss-breadcrumbs__sep { margin: 0 8px; color: var(--wbss-gray-light); }
.wbss-breadcrumbs__current { color: var(--wbss-dark); font-weight: 500; }

/* ==========================================================
   RELATED LINKS BAR (interlinking — bottom of pages)
   ========================================================== */
.wbss-related-bar { padding: 40px 24px; background: var(--wbss-off-white); border-top: 1px solid var(--wbss-gray-light); }
.wbss-related-bar__section { margin-bottom: 24px; }
.wbss-related-bar__section:last-child { margin-bottom: 0; }
.wbss-related-bar__section h4 { font-size: 14px; margin: 0 0 10px; color: var(--wbss-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.wbss-related-bar__links { display: flex; flex-wrap: wrap; gap: 8px; }
.wbss-related-bar__links a {
    display: inline-block; padding: 6px 14px;
    background: var(--wbss-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius-pill); font-size: 13px; color: var(--wbss-dark);
    text-decoration: none; transition: all var(--wbss-transition);
}
.wbss-related-bar__links a:hover { background: var(--wbss-green); color: var(--wbss-white); border-color: var(--wbss-green); }

/* Inline links (inside blog content) */
.wbss-inline-links { margin: 24px 0; padding: 20px 24px; background: var(--wbss-off-white); border-radius: var(--wbss-radius); border-left: 4px solid var(--wbss-green); }
.wbss-inline-links h4,
.wbss-inline-links__title { font-size: 15px; margin: 0 0 10px; font-weight: 700; }
.wbss-inline-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.wbss-inline-links li a {
    display: inline-block; padding: 4px 12px;
    background: var(--wbss-white); border: 1px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius-xs); font-size: 13px; color: var(--wbss-dark);
    text-decoration: none; transition: all var(--wbss-transition);
}
.wbss-inline-links li a:hover { background: var(--wbss-green); color: var(--wbss-white); }

/* Context links (bottom of content sections) */
.wbss-context-links {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid var(--wbss-gray-light);
    font-size: 13px; color: var(--wbss-gray); line-height: 2;
}
.wbss-context-links a { color: var(--wbss-green); font-weight: 500; }

/* ==========================================================
   UTILITY CLASSES — replaces inline styles in templates
   ========================================================== */
.wbss-text-center { text-align: center; }
.wbss-mt-16 { margin-top: 16px; }
.wbss-mt-20 { margin-top: 20px; }
.wbss-mt-24 { margin-top: 24px; }
.wbss-mb-8 { margin-bottom: 8px; }
.wbss-mb-20 { margin-bottom: 20px; }
.wbss-mb-24 { margin-bottom: 24px; }

/* CTA subtitle — used in dark CTA sections */
.wbss-cta__subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
    font-size: 17px;
}
/* CTA secondary line — "or call us" etc */
.wbss-cta__or {
    display: block;
    margin-top: 14px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.wbss-cta__or a {
    color: var(--wbss-green);
    font-weight: 700;
}
/* Contact section phone link on dark bg */
.wbss-contact-section__phone-link {
    color: var(--wbss-white);
}
/* Sidebar hours text */
.wbss-sidebar-card__hours {
    font-size: 13px;
    color: var(--wbss-gray);
}
/* Sidebar card icon in heading */
.wbss-sidebar-card__h4-icon {
    vertical-align: text-bottom;
    margin-right: 4px;
}
/* Contact trust badge icon alignment */
.wbss-contact-trust__icon {
    vertical-align: text-bottom;
    margin-right: 3px;
}
/* Contact form intro text */
.wbss-contact-page__intro {
    color: var(--wbss-gray);
    margin-bottom: 24px;
}
/* Contact section intro text */
.wbss-contact-section__intro {
    margin-bottom: 20px;
}
/* View All Areas bold link variant */
.wbss-service-areas__link--bold {
    font-weight: 700;
}
/* Map iframe (replaces inline border:0 and border-radius) */
.wbss-map-iframe {
    border: 0;
    border-radius: var(--wbss-radius);
}

.admin-bar .wbss-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .wbss-header { top: 46px; } }

/* ==========================================================
   SVG ICON SYSTEM — consistent sizing and display
   ========================================================== */
.wbss-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    flex-shrink: 0;
}
.wbss-icon--xs { width: 16px; height: 16px; }
.wbss-icon--sm { width: 24px; height: 24px; }
.wbss-icon--md { width: 32px; height: 32px; }
.wbss-icon--lg { width: 40px; height: 40px; }
.wbss-icon--xl { width: 48px; height: 48px; }
.wbss-icon--2xl { width: 64px; height: 64px; }

/* Icon in guarantee badges */
.wbss-guarantee__icon .wbss-icon,
.wbss-guarantee__icon img.wbss-icon {
    width: 28px;
    height: 28px;
}

/* Icon in why-choose list */
.wbss-why-choose__icon .wbss-icon,
.wbss-why-choose__icon img.wbss-icon {
    width: 22px;
    height: 22px;
}

/* Icon in compliance badges */
.wbss-compliance__icon .wbss-icon,
.wbss-compliance__icon img.wbss-icon {
    width: 24px;
    height: 24px;
}

/* Icon in step cards */
.wbss-step__icon .wbss-icon,
.wbss-step__icon img.wbss-icon {
    width: 36px;
    height: 36px;
}

/* Icon in service detail cards */
.wbss-service-detail-card__icon .wbss-icon,
.wbss-service-detail-card__icon img.wbss-icon {
    width: 40px;
    height: 40px;
}

/* Icon in mega menu service links */
.wbss-mega-service-link__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

/* Ensure SVG icons render crisply at all sizes */
.wbss-icon,
img.wbss-icon {
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   CRO FEATURES — Bounce Rate Reduction
   ========================================================== */

/* ----------------------------------------------------------
   1. SCROLL PROGRESS INDICATOR
   ---------------------------------------------------------- */
.wbss-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
    background: transparent;
    pointer-events: none;
}
.wbss-scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--wbss-green);
    transition: none;
    will-change: width;
}

/* ----------------------------------------------------------
   2. MOBILE STICKY CTA BAR
   ---------------------------------------------------------- */
.wbss-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--wbss-navy);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wbss-mobile-cta.is-visible {
    transform: translateY(0);
}
.wbss-mobile-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--wbss-radius-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--wbss-font);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--wbss-transition);
    min-height: 48px;
}
.wbss-mobile-cta__btn--quote {
    background: var(--wbss-green);
    color: var(--wbss-white);
}
.wbss-mobile-cta__btn--quote:hover {
    background: var(--wbss-green-dark);
    color: var(--wbss-white);
}
.wbss-mobile-cta__btn--call {
    background: rgba(255,255,255,0.08);
    color: var(--wbss-white);
    border: 1px solid rgba(255,255,255,0.15);
}
.wbss-mobile-cta__btn--call:hover {
    background: rgba(255,255,255,0.14);
    color: var(--wbss-white);
}

/* ----------------------------------------------------------
   4. EXIT INTENT POPUP
   ---------------------------------------------------------- */
.wbss-exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wbss-exit-popup.is-active {
    display: flex;
}
.wbss-exit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 46, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.wbss-exit-popup__content {
    position: relative;
    background: var(--wbss-white);
    border-radius: var(--wbss-radius);
    padding: 40px 36px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    text-align: center;
    animation: wbss-popup-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes wbss-popup-in {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.wbss-exit-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wbss-light);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    color: var(--wbss-gray);
    cursor: pointer;
    transition: all var(--wbss-transition);
    line-height: 1;
}
.wbss-exit-popup__close:hover {
    background: var(--wbss-red);
    color: var(--wbss-white);
}
.wbss-exit-popup__icon {
    margin-bottom: 16px;
}
.wbss-exit-popup__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--wbss-dark);
    margin: 0 0 8px;
}
.wbss-exit-popup__text {
    font-size: 15px;
    color: var(--wbss-gray);
    margin: 0 0 24px;
    line-height: 1.55;
}
.wbss-exit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wbss-exit-popup__input {
    display: block;
    width: 100%;
    padding: 16px;
    border: 2px solid var(--wbss-gray-light);
    border-radius: var(--wbss-radius-sm);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Charles Wright', var(--wbss-font);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    outline: none;
    transition: border-color var(--wbss-transition);
}
.wbss-exit-popup__input:focus {
    border-color: var(--wbss-green);
}
.wbss-exit-popup__input::placeholder {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--wbss-placeholder);
}
.wbss-exit-popup__submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--wbss-green);
    color: var(--wbss-white);
    border: none;
    border-radius: var(--wbss-radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--wbss-font);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all var(--wbss-transition);
    min-height: 48px;
}
.wbss-exit-popup__submit:hover {
    background: var(--wbss-green-dark);
}
.wbss-exit-popup__submit-icon {
    vertical-align: middle;
    margin-right: 6px;
}
.wbss-exit-popup__submit--whatsapp {
    background: var(--wbss-whatsapp);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.wbss-exit-popup__submit--whatsapp:hover {
    background: var(--wbss-whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.wbss-exit-popup__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--wbss-gray);
}
.wbss-exit-popup__trust svg {
    color: var(--wbss-green);
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   5. SECTION REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.wbss-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.wbss-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Respect prefers-reduced-motion globally */
@media (prefers-reduced-motion: reduce) {
    .wbss-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .wbss-scroll-progress__bar {
        transition: none;
    }
    .wbss-exit-popup__content {
        animation: none;
    }
    .wbss-mobile-cta {
        transition: none;
    }
}

/* ----------------------------------------------------------
   6. READING TIME INDICATOR (blog)
   ---------------------------------------------------------- */
.wbss-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: inherit;
    color: rgba(255,255,255,0.5);
}

/* ----------------------------------------------------------
   7. STICKY SIDEBAR CTA (service/area pages)
   ---------------------------------------------------------- */
@media (min-width: 969px) {
    .wbss-content-section__sidebar {
        position: sticky;
        top: 90px;
        align-self: start;
    }
}

/* ----------------------------------------------------------
   CRO RESPONSIVE — Mobile CTA & WhatsApp adjustment
   ---------------------------------------------------------- */
@media (max-width: 968px) {
    .wbss-mobile-cta {
        display: flex;
    }
    /* Push WhatsApp widget above the sticky CTA bar when bar is visible */
    .wbss-whatsapp.wbss-whatsapp--lifted {
        bottom: 85px;
        transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
@media (max-width: 480px) {
    .wbss-mobile-cta {
        padding: 8px 10px;
        gap: 8px;
    }
    .wbss-mobile-cta__btn {
        padding: 12px 10px;
        font-size: 13px;
    }
    .wbss-exit-popup__content {
        padding: 30px 24px;
    }
    .wbss-exit-popup__title {
        font-size: 20px;
    }
    .wbss-exit-popup__input {
        font-size: 16px;
        padding: 14px;
    }
    .wbss-whatsapp.wbss-whatsapp--lifted {
        bottom: 78px;
    }
}

/* ==========================================================
   About Us Page
   ========================================================== */
.wbss-about-section {
    padding: 60px 0;
}
.wbss-about-section--alt {
    background: var(--wbss-offwhite);
}
.wbss-about-section--dark {
    background: var(--wbss-navy);
    color: #fff;
}
.wbss-about-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wbss-dark);
}
.wbss-about-section--dark h2 {
    color: #fff;
}
.wbss-about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--wbss-gray);
    margin-bottom: 16px;
    max-width: 800px;
}
.wbss-about-section--dark p {
    color: rgba(255,255,255,0.7);
}
.wbss-about-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.wbss-about-section__image {
    text-align: center;
}
.wbss-about-section__image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* About — Services Grid */
.wbss-about-services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.wbss-about-services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: #fff;
    border-radius: var(--wbss-radius);
    text-decoration: none;
    color: var(--wbss-dark);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--wbss-border);
    transition: var(--wbss-transition);
}
.wbss-about-services__card:hover {
    border-color: var(--wbss-green);
    box-shadow: var(--wbss-shadow);
    transform: translateY(-2px);
}

/* About — Process Steps */
.wbss-about-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.wbss-about-process__step {
    padding: 24px;
    background: var(--wbss-offwhite);
    border-radius: var(--wbss-radius);
    border: 1px solid var(--wbss-border);
}
.wbss-about-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--wbss-green);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}
.wbss-about-process__step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--wbss-dark);
}
.wbss-about-process__step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--wbss-gray);
    margin-bottom: 0;
}

/* About — Credentials Grid */
.wbss-about-credentials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}
.wbss-about-credentials__card {
    padding: 28px;
    background: #fff;
    border-radius: var(--wbss-radius);
    border: 1px solid var(--wbss-border);
}
.wbss-about-credentials__card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 14px 0 8px;
    color: var(--wbss-dark);
}
.wbss-about-credentials__card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--wbss-gray);
    margin-bottom: 0;
}

/* About — Areas Grid */
.wbss-about-areas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.wbss-about-areas__link {
    display: inline-block;
    padding: 8px 18px;
    background: var(--wbss-offwhite);
    border: 1px solid var(--wbss-border);
    border-radius: var(--wbss-radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--wbss-dark);
    text-decoration: none;
    transition: var(--wbss-transition);
}
.wbss-about-areas__link:hover {
    background: var(--wbss-green);
    color: #fff;
    border-color: var(--wbss-green);
}

/* About — Stats Grid (dark section) */
.wbss-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    text-align: center;
}
.wbss-about-stats__number {
    font-size: 36px;
    font-weight: 800;
    color: var(--wbss-green);
    line-height: 1.1;
}
.wbss-about-stats__label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

/* About — Commitment List */
.wbss-about-commitment__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.wbss-about-commitment__list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--wbss-border);
    font-size: 15px;
    line-height: 1.7;
    color: var(--wbss-gray);
}
.wbss-about-commitment__list li:last-child {
    border-bottom: none;
}

/* About — Contact Grid */
.wbss-about-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}
.wbss-about-contact__card {
    padding: 24px;
    background: #fff;
    border-radius: var(--wbss-radius);
    border: 1px solid var(--wbss-border);
}
.wbss-about-contact__card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--wbss-dark);
}
.wbss-about-contact__card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
}
.wbss-about-contact__card a {
    color: var(--wbss-green);
}
.wbss-about-contact__hours {
    margin-top: 12px;
    font-size: 13px;
    color: var(--wbss-gray);
}

/* About — Responsive */
@media (max-width: 1200px) {
    .wbss-about-services__grid { grid-template-columns: repeat(3, 1fr); }
    .wbss-about-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
    .wbss-about-section { padding: 40px 0; }
    .wbss-about-section__layout { grid-template-columns: 1fr; gap: 32px; }
    .wbss-about-services__grid { grid-template-columns: repeat(3, 1fr); }
    .wbss-about-credentials__grid { grid-template-columns: 1fr; }
    .wbss-about-contact__grid { grid-template-columns: 1fr; }
    .wbss-about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
    .wbss-about-section h2 { font-size: 24px; }
    .wbss-about-services__grid { grid-template-columns: repeat(2, 1fr); }
    .wbss-about-process { grid-template-columns: 1fr; }
    .wbss-about-stats__number { font-size: 28px; }
}
@media (max-width: 480px) {
    .wbss-about-section { padding: 28px 0; }
    .wbss-about-services__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .wbss-about-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .wbss-about-contact__card { padding: 18px; }
}
