/* Highfield Property Care — Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    /* Palette extracted from assets/images/logo/logo-blue.png */
    --hf-brand: #0030a0;
    --hf-brand-dark: #002373;
    --hf-brand-light: #1047c8;
    --hf-brand-rgb: 0, 48, 160;
    --hf-brand-soft: rgba(var(--hf-brand-rgb), 0.1);
    --hf-brand-soft-md: rgba(var(--hf-brand-rgb), 0.12);
    --hf-brand-tint: #e8eef9;

    --hf-navy: #001138;
    --hf-navy-light: #002373;
    --hf-navy-rgb: 0, 17, 56;

    --hf-gold: #f0c060;
    --hf-gold-dark: #ebaa29;
    --hf-gold-tint: #fdf6e8;

    /* Semantic aliases (legacy naming) */
    --hf-teal: var(--hf-brand);
    --hf-teal-dark: var(--hf-brand-dark);
    --hf-teal-light: var(--hf-brand-light);

    --hf-white: #ffffff;
    --hf-bg: #f9fafb;
    --hf-surface: #ffffff;
    --hf-border: #e5e7eb;
    --hf-text: #1e293b;
    --hf-muted: #64748b;
    --hf-radius: 12px;
    --hf-radius-lg: 16px;
    --hf-shadow: 0 4px 24px rgba(var(--hf-navy-rgb), 0.08);
    --hf-shadow-lg: 0 12px 40px rgba(var(--hf-navy-rgb), 0.12);
    --hf-font-serif: 'Playfair Display', Georgia, serif;
    --hf-font-sans: 'Inter', system-ui, sans-serif;
    --hf-container: 1200px;
}

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

html { scroll-behavior: smooth; }

body.hf-body {
    font-family: var(--hf-font-sans);
    color: var(--hf-text);
    background: linear-gradient(180deg, #eef3fc 0%, var(--hf-bg) 280px, var(--hf-bg) 100%);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.hf-body .preloaders,
.hf-body .click__sidebar,
.hf-body .subside__barmenu,
.hf-body #search { display: none !important; }

.hf-body .main-header-section,
.hf-body .main-headerwrap { display: none !important; }

.hf-container {
    max-width: var(--hf-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Top bar ── */
.hf-topbar {
    background: var(--hf-navy);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 10px 0;
}
.hf-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 20px;
}
.hf-topbar__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-shrink: 0;
}
.hf-announce-ticker {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 20px;
    overflow: hidden;
}
.hf-announce-ticker__slide {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}
.hf-announce-ticker__slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hf-announce-ticker__slide.is-exiting {
    opacity: 0;
    transform: translateY(-100%);
}
.hf-announce-ticker__badge {
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--hf-gold);
    color: var(--hf-navy);
    line-height: 1.3;
}
.hf-announce-ticker__text {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}
.hf-announce-ticker__cta {
    flex-shrink: 0;
    margin-left: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--hf-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}
.hf-announce-ticker__cta:hover {
    color: var(--hf-white);
}
.hf-announce-ticker__cta i {
    font-size: 9px;
}
@media (max-width: 991px) {
    .hf-topbar__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .hf-announce-ticker {
        max-width: none;
        height: auto;
        min-height: 20px;
    }
    .hf-announce-ticker__slide {
        position: relative;
        inset: auto;
        display: none;
        transform: none;
        white-space: normal;
    }
    .hf-announce-ticker__slide.is-active {
        display: flex;
    }
    .hf-announce-ticker__slide.is-exiting {
        display: none;
    }
    .hf-announce-ticker__text {
        white-space: normal;
    }
    .hf-topbar__items {
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .hf-announce-ticker__text {
        font-size: 11px;
    }
    .hf-topbar__items {
        gap: 12px 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hf-announce-ticker__slide {
        transition: none;
    }
}
.hf-topbar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.hf-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hf-topbar__item i {
    font-size: 12px;
    opacity: 0.75;
}

/* ── Header ── */
.hf-header {
    background: var(--hf-white);
    border-bottom: 1px solid var(--hf-border);
    box-shadow: 0 4px 20px rgba(var(--hf-brand-rgb), 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hf-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}
.hf-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.hf-logo--brand {
    gap: 16px;
    line-height: 1.15;
}
.hf-header .hf-logo--brand {
    gap: 18px;
}
.hf-logo__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.hf-logo__name {
    font-family: var(--hf-font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--hf-navy);
    letter-spacing: 0.01em;
    line-height: 1.05;
    white-space: nowrap;
}
.hf-logo__tagline {
    font-family: var(--hf-font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hf-brand);
    line-height: 1.2;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .hf-header .hf-logo__name {
        font-size: 36px;
        letter-spacing: 0.05em;
    }
    .hf-header .hf-logo__tagline {
        font-size: 15px;
        letter-spacing: 0.34em;
    }
    .hf-header .hf-logo__text {
        gap: 5px;
    }
    .hf-header .hf-logo--brand {
        gap: 22px;
    }
}
.hf-logo__name--white {
    color: var(--hf-white);
}
.hf-logo__tagline--white {
    color: var(--hf-gold);
}
.hf-logo__image {
    height: 48px;
    width: auto;
    display: block;
}
.hf-header .hf-logo__image {
    height: 60px;
}
.hf-footer .hf-logo__image {
    height: 52px;
}
@media (max-width: 575px) {
    .hf-header .hf-logo__image { height: 46px; }
    .hf-logo--brand { gap: 12px; }
    .hf-logo__name { font-size: 18px; }
    .hf-logo__tagline {
        font-size: 10px;
        letter-spacing: 0.16em;
    }
}
.hf-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hf-nav a {
    text-decoration: none;
    color: var(--hf-text);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.hf-nav a:hover,
.hf-nav a.is-active { color: var(--hf-brand); }
.hf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--hf-font-sans);
    line-height: 1.2;
}
.hf-btn__icon {
    font-size: 0.92em;
    opacity: 0.92;
    flex-shrink: 0;
}
.hf-btn__label {
    display: inline-block;
}
.hf-btn--primary {
    background: var(--hf-brand);
    color: var(--hf-white);
}
.hf-btn--primary:hover {
    background: var(--hf-brand-dark);
    color: var(--hf-white);
}
.hf-btn--outline {
    background: transparent;
    color: var(--hf-white);
    border: 2px solid rgba(255,255,255,0.6);
}
.hf-btn--outline:hover {
    background: var(--hf-white);
    color: var(--hf-brand);
}
.hf-btn--white {
    background: var(--hf-white);
    color: var(--hf-brand);
}
.hf-btn--white:hover {
    background: var(--hf-bg);
}
.hf-btn--sm { padding: 10px 20px; font-size: 13px; }
.hf-btn--block { width: 100%; }

.hf-show-mobile { display: none !important; }
@media (max-width: 991px) {
    .hf-show-mobile { display: inline-flex !important; }
    .hf-hide-mobile { display: none !important; }
}

.hf-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.hf-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hf-navy);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .hf-menu-toggle { display: block; }
    .hf-header__cta { display: none; }
    .hf-nav-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hf-white);
        border-bottom: 1px solid var(--hf-border);
        padding: 20px 24px;
        box-shadow: var(--hf-shadow);
    }
    .hf-nav-wrap.is-open { display: block; }
    .hf-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hf-header__cta { display: none; }
    .hf-nav-wrap .hf-btn { width: 100%; margin-top: 12px; }
}

/* ── Page hero ── */
.hf-hero {
    background: var(--hf-navy);
    color: var(--hf-white);
    padding: 48px 0 56px;
}
.hf-hero--home,
.hf-hero--photo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #050f1f;
}
.hf-hero--home > .hf-container,
.hf-hero--photo > .hf-container {
    position: relative;
    z-index: 2;
}
.hf-hero--home::before,
.hf-hero--photo::before {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.hf-hero--home::after,
.hf-hero--photo::after {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
}
.hf-hero--home {
    padding: 72px 0 80px;
    min-height: min(55vh, 520px);
}
.hf-hero--home::before {
    background-image: url('/assets/images/freepik/full-shot-men-cleaning-office.jpg');
    background-image: image-set(
        url('/assets/images/freepik/full-shot-men-cleaning-office.avif') type('image/avif'),
        url('/assets/images/freepik/full-shot-men-cleaning-office.webp') type('image/webp'),
        url('/assets/images/freepik/full-shot-men-cleaning-office.jpg') type('image/jpeg')
    );
    background-position: 58% top;
}
.hf-hero--home::after {
    background-image: linear-gradient(
        90deg,
        rgba(3, 10, 28, 0.94) 0%,
        rgba(3, 10, 28, 0.72) 38%,
        rgba(3, 10, 28, 0.38) 62%,
        rgba(3, 10, 28, 0.14) 100%
    );
}
.hf-hero--photo:not(.hf-hero--home) {
    padding: 56px 0 64px;
    min-height: min(40vh, 360px);
}
.hf-hero--photo:not(.hf-hero--home)::before {
    background-image: var(--hf-hero-image);
    background-position: center 30%;
}
.hf-hero--photo:not(.hf-hero--home)::after {
    background-image: linear-gradient(
        90deg,
        rgba(3, 10, 28, 0.92) 0%,
        rgba(3, 10, 28, 0.78) 45%,
        rgba(3, 10, 28, 0.55) 100%
    );
}
@media (max-width: 991px) {
    .hf-hero--home::before,
    .hf-hero--photo:not(.hf-hero--home)::before {
        background-position: 54% top;
    }
    .hf-hero--home::after,
    .hf-hero--photo:not(.hf-hero--home)::after {
        background-image: linear-gradient(
            180deg,
            rgba(3, 10, 28, 0.9) 0%,
            rgba(3, 10, 28, 0.78) 55%,
            rgba(3, 10, 28, 0.65) 100%
        );
    }
}
@media (max-width: 575px) {
    .hf-hero--home {
        padding: 56px 0 64px;
        min-height: 420px;
    }
    .hf-hero--photo:not(.hf-hero--home) {
        padding: 44px 0 52px;
        min-height: 300px;
    }
    .hf-hero--home::before,
    .hf-hero--photo:not(.hf-hero--home)::before {
        background-position: 52% top;
    }
    .hf-hero--home::after,
    .hf-hero--photo:not(.hf-hero--home)::after {
        background-image: linear-gradient(rgba(3, 10, 28, 0.88), rgba(3, 10, 28, 0.88));
    }
}
.hf-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.hf-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.hf-breadcrumb a:hover { color: var(--hf-white); }
.hf-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
}
.hf-hero__grid--single {
    grid-template-columns: 1fr;
    align-items: start;
}
.hf-hero__title {
    font-family: var(--hf-font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
}
.hf-hero__title em,
.hf-hero__highlight {
    font-style: normal;
    color: var(--hf-gold);
}

.hf-hero__brand-anim {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
}

.hf-hero__brand-anim__outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--hf-gold);
}

.hf-hero__brand-anim__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--hf-gold);
    animation: hf-brand-fill 3s ease-in-out infinite;
}

@keyframes hf-brand-fill {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .hf-hero__brand-anim__outline {
        color: var(--hf-gold);
        -webkit-text-stroke: 0;
    }

    .hf-hero__brand-anim__fill {
        animation: none;
        width: 100%;
    }
}
.hf-hero__lead {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 0 28px;
    line-height: 1.7;
}
.hf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hf-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
}
.hf-stat__value {
    font-family: var(--hf-font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--hf-white);
    line-height: 1;
}
.hf-stat__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

@media (max-width: 767px) {
    .hf-hero__grid { grid-template-columns: 1fr; }
    .hf-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section utilities ── */
.hf-section {
    padding: 64px 0;
    position: relative;
}
.hf-section--compact { padding: 48px 0; }
.hf-section--white { background: var(--hf-white); }
.hf-section--tint {
    background: linear-gradient(180deg, var(--hf-brand-tint) 0%, #f0f4fc 100%);
}
.hf-section--soft {
    background: #f6f8fc;
}
.hf-section--gold {
    background: linear-gradient(180deg, var(--hf-gold-tint) 0%, #fff9ee 100%);
}
.hf-section--decor::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--hf-brand-rgb), 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hf-section--decor::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 96, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hf-section > .hf-container {
    position: relative;
    z-index: 1;
}
.hf-section-head { margin-bottom: 48px; }
.hf-section-head--left {
    text-align: left;
    margin-bottom: 32px;
}
.hf-section-head--left .hf-section-title,
.hf-section-head--left .hf-section-sub { text-align: left; margin-left: 0; }
.hf-section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hf-brand-dark);
    background: var(--hf-gold-tint);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin: 0 0 14px;
}
.hf-section-head--left .hf-section-eyebrow {
    margin-left: 0;
}
.hf-section-title {
    font-family: var(--hf-font-serif);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 12px;
    text-align: center;
    line-height: 1.2;
}
.hf-section-sub {
    text-align: center;
    color: var(--hf-muted);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}
.hf-section-head .hf-section-sub { margin-bottom: 0; }
.hf-container--narrow { max-width: 900px; }
.hf-container--form { max-width: 640px; }
.hf-actions { text-align: center; margin-top: 40px; }
.hf-actions--left { text-align: left; margin-top: 28px; }
.hf-card-title {
    font-family: var(--hf-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 8px;
}
.hf-card-lead {
    color: var(--hf-muted);
    font-size: 15px;
    margin: 0 0 24px;
    line-height: 1.6;
}
.hf-stack { display: flex; flex-direction: column; gap: 20px; }
.hf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

/* ── Service filters ── */
.hf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    margin-bottom: 32px;
    background: var(--hf-brand-tint);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.12);
    border-radius: var(--hf-radius-lg);
}
.hf-filter {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--hf-border);
    background: var(--hf-white);
    color: var(--hf-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--hf-font-sans);
}
.hf-filter:hover,
.hf-filter.is-active {
    background: var(--hf-brand);
    border-color: var(--hf-brand);
    color: var(--hf-white);
}

/* ── Services layout ── */
.hf-services-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.hf-services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hf-service-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--hf-white);
    border-radius: var(--hf-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hf-border);
    box-shadow: var(--hf-shadow);
    transition: box-shadow 0.3s;
}
.hf-service-card:hover { box-shadow: var(--hf-shadow-lg); }
.hf-service-card.is-hidden { display: none; }
.hf-service-card__media {
    position: relative;
    min-height: 220px;
    background: #e2e8f0;
}
.hf-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hf-service-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hf-white);
}
.hf-service-card__badge--industrial { background: #dc2626; }
.hf-service-card__badge--contract { background: var(--hf-brand); }
.hf-service-card__badge--hygiene { background: #7c3aed; }
.hf-service-card__badge--windows { background: var(--hf-brand-light); }
.hf-service-card__badge--deep { background: #9333ea; }
.hf-service-card__body { padding: 28px 32px; }
.hf-service-card__title {
    font-family: var(--hf-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 12px;
}
.hf-service-card__desc {
    color: var(--hf-muted);
    font-size: 15px;
    margin: 0 0 20px;
    line-height: 1.65;
}
.hf-service-card__includes {
    margin-bottom: 24px;
}
.hf-service-card__includes-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hf-brand);
    margin-bottom: 12px;
}
.hf-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-checklist li {
    font-size: 14px;
    color: var(--hf-text);
    padding-left: 22px;
    position: relative;
}
.hf-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hf-brand);
    font-weight: 700;
}
.hf-service-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.hf-link {
    color: var(--hf-brand);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hf-link i { font-size: 12px; }
.hf-link:hover { text-decoration: underline; }

@media (max-width: 991px) {
    .hf-services-layout { grid-template-columns: 1fr; }
    .hf-service-card { grid-template-columns: 1fr; }
    .hf-service-card__media { min-height: 200px; }
    .hf-checklist { grid-template-columns: 1fr; }
}

/* ── Sidebar ── */
.hf-sidebar { position: sticky; top: 100px; }
.hf-sidebar .hf-info-card + .hf-info-card { margin-top: 20px; }
.hf-quote-card {
    background: var(--hf-navy);
    border-radius: var(--hf-radius-lg);
    padding: 28px;
    color: var(--hf-white);
    margin-bottom: 20px;
}
.hf-quote-card__title {
    font-family: var(--hf-font-serif);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.hf-quote-card__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 24px;
    line-height: 1.5;
}
.hf-info-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-left: 3px solid var(--hf-brand);
    border-radius: var(--hf-radius-lg);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(var(--hf-navy-rgb), 0.05);
}
.hf-info-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 16px;
}
.hf-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-info-list li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--hf-border);
    font-size: 14px;
    color: var(--hf-muted);
    line-height: 1.5;
}
.hf-info-list__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.hf-info-list li:last-child { border-bottom: none; }
.hf-info-list strong {
    display: block;
    color: var(--hf-navy);
    font-size: 13px;
    margin-bottom: 2px;
}
.hf-info-list a {
    color: var(--hf-brand);
    text-decoration: none;
}
.hf-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-why-list li {
    font-size: 14px;
    color: var(--hf-text);
    padding: 8px 0 8px 24px;
    position: relative;
}
.hf-why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hf-brand);
    font-weight: 700;
}

/* ── Quote form (sidebar) ── */
.hf-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hf-form .hf-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hf-form .hf-field:last-child { margin-bottom: 0; }
.hf-form__grid {
    display: flex;
    flex-direction: column;
}
.hf-form__grid .hf-field { margin-bottom: 16px; }
.hf-form__grid--pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.hf-form__grid--pair .hf-field { margin-bottom: 0; }
.hf-form__grid--pair .hf-field:nth-child(3):last-child {
    grid-column: 1 / -1;
}
@media (max-width: 640px) {
    .hf-form__grid--pair { grid-template-columns: 1fr; }
    .hf-form__grid--pair .hf-field:nth-child(3):last-child {
        grid-column: auto;
    }
}
.hf-form label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.3;
}
.hf-form input,
.hf-form select,
.hf-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--hf-white);
    font-size: 14px;
    font-family: var(--hf-font-sans);
    line-height: 1.4;
    box-sizing: border-box;
}
.hf-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.hf-form input::placeholder,
.hf-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.hf-form select option { color: var(--hf-navy); background: var(--hf-white); }
.hf-form textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.hf-form .hf-enquiry-picker {
    margin-top: 16px;
    padding-top: 4px;
    margin-bottom: 16px;
}
.hf-form .hf-enquiry-picker > label {
    margin-bottom: 2px;
}
.hf-form .hf-residential { margin-bottom: 16px; }
.hf-form .hf-message-field { margin-bottom: 16px; }
.hf-form > .hf-btn,
.hf-form .hf-btn--submit {
    margin-top: 4px;
}
.hf-form .hf-btn--submit {
    width: 100%;
    background: var(--hf-brand-light);
    color: var(--hf-white);
}
.hf-form .hf-btn--submit:hover {
    background: var(--hf-brand);
    color: var(--hf-white);
}

.hf-form--light label { color: var(--hf-muted); }
.hf-form--light input,
.hf-form--light select,
.hf-form--light textarea {
    background: var(--hf-bg);
    border: 1px solid var(--hf-border);
    color: var(--hf-text);
}
.hf-form--light select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.hf-form--light input::placeholder,
.hf-form--light textarea::placeholder { color: #94a3b8; }
.hf-form--light .hf-enquiry-picker__trigger {
    min-height: 44px;
}
.hf-form--light input[type="file"] {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
}

.hf-contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.hf-contact-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-top: 4px solid var(--hf-brand);
    border-radius: var(--hf-radius-lg);
    padding: 32px;
    box-shadow: var(--hf-shadow);
}
@media (max-width: 991px) {
    .hf-contact-layout { grid-template-columns: 1fr; }
}

.hf-content-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-left: 4px solid var(--hf-brand);
    border-radius: var(--hf-radius-lg);
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: var(--hf-shadow);
}
.hf-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hf-story-grid .hf-content-card {
    margin-bottom: 0;
    height: 100%;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.hf-story-grid .hf-content-card:hover {
    box-shadow: var(--hf-shadow-lg);
    border-color: rgba(var(--hf-brand-rgb), 0.2);
}
@media (max-width: 991px) {
    .hf-story-grid { grid-template-columns: 1fr; }
}
.hf-content-card h3 {
    font-family: var(--hf-font-serif);
    font-size: 22px;
    color: var(--hf-navy);
    margin: 0 0 12px;
}
.hf-content-card p {
    color: var(--hf-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}
.hf-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hf-value-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-top: 3px solid var(--hf-gold);
    border-radius: var(--hf-radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(var(--hf-navy-rgb), 0.06);
}
.hf-value-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hf-brand) 0%, var(--hf-brand-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--hf-white);
    font-size: 22px;
}
@media (max-width: 991px) {
    .hf-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .hf-values-grid { grid-template-columns: 1fr; }
}

.hf-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}
.hf-alert--success {
    background: rgba(var(--hf-brand-rgb), 0.12);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.35);
    color: var(--hf-brand-dark);
}
.hf-alert--error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.hf-quote-card .hf-alert--success {
    background: var(--hf-gold-tint);
    border: 1px solid var(--hf-gold);
    color: var(--hf-navy);
}

.hf-quote-card .hf-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.hf-form--light .hf-alert--error,
.hf-contact-card .hf-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.hf-field-error {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #b91c1c;
    font-weight: 500;
}
.hf-field.has-error input,
.hf-field.has-error select,
.hf-field.has-error textarea,
.hf-field.has-error .hf-enquiry-picker__trigger {
    border-color: #f87171 !important;
}
.hf-residential .hf-field--inset.has-error input,
.hf-residential .hf-field--inset.has-error select,
.hf-residential .hf-field--inset.has-error textarea {
    border-color: #f87171 !important;
}

#request-quote { scroll-margin-top: 110px; }
#career-application-form { scroll-margin-top: 100px; }
.hf-actions--inline {
    text-align: left;
    margin-top: 8px;
}

/* ── Industry cards (home) ── */
.hf-industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.hf-industry-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-top: 3px solid var(--hf-brand);
    border-radius: var(--hf-radius-lg);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(var(--hf-navy-rgb), 0.05);
}
.hf-industry-card:hover {
    box-shadow: var(--hf-shadow);
    border-color: var(--hf-brand);
    border-top-color: var(--hf-gold);
    transform: translateY(-2px);
}
.hf-industry-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hf-brand) 0%, var(--hf-brand-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--hf-white);
    font-size: 18px;
}
.hf-industry-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 6px;
}
.hf-industry-card p {
    font-size: 13px;
    color: var(--hf-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .hf-industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .hf-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hf-industry-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}
@media (max-width: 480px) {
    .hf-industries-grid { gap: 12px; }
    .hf-industry-card { padding: 20px 14px; }
    .hf-industry-card:last-child:nth-child(odd) {
        width: calc(50% - 6px);
    }
    .hf-industry-card__icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .hf-industry-card h4 { font-size: 14px; }
    .hf-industry-card p { font-size: 12px; }
    .hf-home .hf-industry-card__icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* ── Trust / stats bar ── */
.hf-trust-bar {
    background: linear-gradient(135deg, var(--hf-brand) 0%, var(--hf-brand-dark) 100%);
    border: none;
    padding: 28px 0;
}
.hf-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.hf-trust-item__value {
    font-family: var(--hf-font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--hf-gold);
}
.hf-trust-item__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 4px;
}

@media (max-width: 767px) {
    .hf-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hf-trust-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 14px 10px;
    }
    .hf-trust-item__value {
        font-size: 26px;
    }
}

/* ── Process steps ── */
.hf-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hf-process__steps { display: flex; flex-direction: column; gap: 28px; }
.hf-process__intro {
    color: var(--hf-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: -12px 0 8px;
    max-width: 480px;
}
.hf-step {
    display: flex;
    gap: 20px;
}
.hf-step__num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--hf-brand) 0%, var(--hf-brand-light) 100%);
    color: var(--hf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(var(--hf-brand-rgb), 0.25);
}
.hf-step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 6px;
}
.hf-step__text {
    font-size: 15px;
    color: var(--hf-muted);
    margin: 0;
    line-height: 1.6;
}
.hf-process__image {
    border-radius: var(--hf-radius-lg);
    overflow: hidden;
    box-shadow: var(--hf-shadow-lg);
    border: 3px solid var(--hf-white);
    outline: 3px solid var(--hf-brand-soft-md);
}
.hf-process__image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .hf-process { grid-template-columns: 1fr; }
}

/* ── About features (mobile center) ── */
.hf-value-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 8px;
}
.hf-value-card__text {
    font-size: 14px;
    color: var(--hf-muted);
    margin: 0;
    line-height: 1.55;
}
.hf-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hf-feature {
    padding: 8px 0;
}
.hf-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.hf-feature__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 8px;
}
.hf-feature__text {
    font-size: 14px;
    color: var(--hf-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .hf-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .hf-features-grid { grid-template-columns: 1fr; }
}

/* ── CTA band ── */
.hf-cta-band {
    background: var(--hf-brand);
    padding: 64px 0;
    text-align: center;
    color: var(--hf-white);
}
.hf-cta-band__title {
    font-family: var(--hf-font-serif);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 12px;
}
.hf-cta-band__text {
    font-size: 17px;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 28px;
}
.hf-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ── Footer ── */
.hf-footer {
    background: var(--hf-navy);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.hf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.hf-footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 280px;
}
.hf-footer__heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--hf-white);
    margin: 0 0 20px;
}
.hf-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-footer__links li { margin-bottom: 10px; }
.hf-footer__links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
}
.hf-footer__links a:hover { color: var(--hf-white); }
.hf-footer__contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
}
.hf-footer__contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--hf-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.hf-footer__contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.hf-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.hf-footer__bottom p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .hf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .hf-footer__grid { grid-template-columns: 1fr; }
}

/* ── Areas grid ── */
.hf-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.hf-area-tag {
    background: var(--hf-brand-soft);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--hf-brand-dark);
}
@media (max-width: 767px) {
    .hf-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Homepage layout ── */
.hf-home {
    background: var(--hf-white);
}
.hf-home-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hf-home-section > .hf-container {
    position: relative;
    z-index: 1;
}
.hf-home-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(var(--hf-brand-rgb), 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}
.hf-home-section--industries {
    background: linear-gradient(168deg, #d4e0f4 0%, #e4ecf8 38%, #eef3fb 100%);
}
.hf-home-section--industries::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/freepik/full-shot-men-cleaning-office.jpg");
    background-size: cover;
    background-position: center right;
    opacity: 0.07;
    mask-image: linear-gradient(105deg, transparent 25%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}
.hf-home-section--about {
    background: linear-gradient(180deg, #e8edf7 0%, #f2f5fa 38%, #faf4e8 100%);
}
.hf-home-section--about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/freepik/guys.jpg");
    background-size: cover;
    background-position: left center;
    opacity: 0.06;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.hf-home-section--services {
    background: linear-gradient(180deg, #dce6f6 0%, #e8eef9 45%, #f0f5fc 100%);
}
.hf-home-section--services::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/freepik/industrial-cleaning-quote.jpg");
    background-size: cover;
    background-position: center right;
    opacity: 0.08;
    mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, transparent 58%);
    pointer-events: none;
    z-index: 0;
}
.hf-home .hf-section-head { margin-bottom: 36px; }
.hf-home .hf-section-head--left { margin-bottom: 28px; }
.hf-home .hf-section-head--left .hf-section-sub {
    margin-left: 0;
    max-width: 520px;
}
.hf-home .hf-section-eyebrow {
    background: none;
    border: none;
    padding: 0;
    color: var(--hf-brand);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}
.hf-home .hf-section-title {
    letter-spacing: -0.02em;
}
.hf-home .hf-section-sub {
    font-size: 15px;
    line-height: 1.65;
}
.hf-home .hf-hero__lead {
    font-size: 18px;
    line-height: 1.75;
    max-width: 520px;
}
.hf-home .hf-trust-bar {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
}
.hf-home .hf-trust-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}
.hf-home .hf-trust-bar > .hf-container {
    position: relative;
    z-index: 1;
}
.hf-home .hf-trust-grid {
    gap: 0;
}
.hf-home .hf-trust-item {
    padding: 8px 20px;
}
.hf-home .hf-trust-item + .hf-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.hf-home .hf-trust-item__value {
    font-size: 26px;
}
.hf-home .hf-industry-card {
    padding: 24px 18px;
    border-top: none;
    border: 1px solid rgba(var(--hf-brand-rgb), 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(var(--hf-navy-rgb), 0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hf-home .hf-industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(var(--hf-navy-rgb), 0.08);
    border-color: rgba(var(--hf-brand-rgb), 0.25);
}
.hf-home .hf-industry-card__icon {
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-radius: 12px;
}
.hf-home-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}
.hf-home-split__media {
    border-radius: var(--hf-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(var(--hf-navy-rgb), 0.12);
}
.hf-home-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 5;
    max-height: 500px;
}
.hf-features-grid--cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hf-feature-card {
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius);
    padding: 20px;
    transition: box-shadow 0.2s ease;
}
.hf-feature-card:hover {
    box-shadow: 0 8px 24px rgba(var(--hf-navy-rgb), 0.06);
}
.hf-home .hf-feature-card {
    border-left: 1px solid var(--hf-border);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(var(--hf-navy-rgb), 0.05);
}
.hf-home .hf-feature-card__icon {
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
}
.hf-feature-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hf-brand) 0%, var(--hf-brand-light) 100%);
    color: var(--hf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}
.hf-feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 6px;
}
.hf-feature-card__text {
    font-size: 13px;
    color: var(--hf-muted);
    margin: 0;
    line-height: 1.55;
}
.hf-home .hf-services-list {
    gap: 16px;
}
.hf-home-services-quote {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 400px);
    gap: 40px;
    align-items: start;
}
.hf-home-services-quote__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hf-home-services-quote__main .hf-service-card {
    grid-template-columns: 220px 1fr;
}
.hf-home-services-quote__main .hf-service-card__media {
    min-height: 180px;
}
.hf-home-services-quote__main .hf-service-card__body {
    padding: 22px 24px;
}
.hf-home-services-quote__main .hf-service-card__title {
    font-size: 20px;
    margin-bottom: 8px;
}
.hf-home-services-quote__main .hf-service-card__desc {
    font-size: 14px;
    margin-bottom: 16px;
}
.hf-home-services-quote__aside {
    position: sticky;
    top: 100px;
    z-index: 30;
}
.hf-coverage-band {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.14);
    border-radius: var(--hf-radius-lg);
    box-shadow: 0 8px 32px rgba(var(--hf-navy-rgb), 0.07);
}
.hf-coverage-band__title {
    font-family: var(--hf-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--hf-navy);
    margin: 0 0 16px;
}
.hf-coverage-band__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}
.hf-coverage-band__list li {
    font-size: 13px;
    font-weight: 500;
    color: var(--hf-text);
    background: var(--hf-white);
    border: 1px solid rgba(var(--hf-brand-rgb), 0.1);
    border-radius: 6px;
    padding: 8px 14px;
    line-height: 1.2;
}
.hf-home #request-quote {
    padding-bottom: 48px;
}
.hf-home #request-quote .hf-quote-card {
    margin-bottom: 0;
    box-shadow: 0 16px 40px rgba(var(--hf-navy-rgb), 0.14);
    border-radius: var(--hf-radius-lg);
}
.hf-home .hf-home-services-quote__main .hf-service-card {
    border-color: rgba(var(--hf-brand-rgb), 0.12);
    box-shadow: 0 6px 24px rgba(var(--hf-navy-rgb), 0.09);
}
.hf-home-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-brand-dark) 100%);
    padding: 56px 0;
}
.hf-home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/freepik/cleaning-1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: luminosity;
    pointer-events: none;
}
.hf-home-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 75%, transparent 75%);
    background-size: 36px 36px;
    pointer-events: none;
}
.hf-home-cta > .hf-container {
    position: relative;
    z-index: 1;
}
.hf-home-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px 40px;
}
.hf-home-cta__title {
    font-family: var(--hf-font-serif);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--hf-white);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.hf-home-cta__text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 480px;
}
.hf-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    flex-shrink: 0;
}
.hf-home-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hf-gold);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hf-home-cta__phone:hover {
    color: var(--hf-white);
}
@media (max-width: 991px) {
    .hf-home .hf-trust-item + .hf-trust-item {
        border-left: none;
    }
    .hf-home .hf-trust-grid {
        gap: 12px;
    }
    .hf-home-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 991px) {
    .hf-home-services-quote {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hf-home-services-quote__aside {
        position: static;
    }
    .hf-coverage-band {
        margin-top: 32px;
        padding: 22px 20px;
    }
}
@media (max-width: 575px) {
    .hf-home-services-quote__main .hf-service-card {
        grid-template-columns: 1fr;
    }
    .hf-coverage-band__list li {
        font-size: 12px;
        padding: 7px 12px;
    }
}
@media (max-width: 991px) {
    .hf-home-split { grid-template-columns: 1fr; }
    .hf-home-split__media {
        max-width: 480px;
        margin: 0 auto;
    }
    .hf-home-split__media img {
        aspect-ratio: 16 / 10;
        max-height: none;
    }
}
@media (max-width: 575px) {
    .hf-section--compact { padding: 36px 0; }
    .hf-home .hf-trust-bar { padding: 20px 0; }
    .hf-features-grid--cards { grid-template-columns: 1fr; }
}

/* Hide legacy template decorations on hf pages */
.hf-body .footer-spara,
.hf-body .footer-working,
.hf-body .working-ball,
.hf-body .working-fl,
.hf-body .working-arrow,
.hf-body .working-bable,
.hf-body .follower { display: none !important; }

/* ── Privacy policy ── */
.hf-policy {
    max-width: 820px;
}
.hf-policy .policy-intro-card {
    background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-brand) 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    color: var(--hf-white);
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}
.hf-policy .policy-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hf-policy .policy-intro-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hf-policy .policy-intro-icon i {
    font-size: 2rem;
    color: var(--hf-gold);
}
.hf-policy .policy-intro-card h3 {
    font-family: var(--hf-font-serif);
    font-size: 1.75rem;
    margin: 0 0 12px;
    color: var(--hf-white);
}
.hf-policy .policy-intro-card p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.7;
}
.hf-policy .policy-date {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.875rem;
}
.hf-policy .policy-card {
    background: var(--hf-white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(var(--hf-navy-rgb), 0.06);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--hf-border);
}
.hf-policy .policy-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--hf-bg);
    border-bottom: 1px solid var(--hf-border);
}
.hf-policy .policy-number {
    width: 40px;
    height: 40px;
    background: var(--hf-brand);
    color: var(--hf-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.hf-policy .policy-card-header h4 {
    margin: 0;
    color: var(--hf-navy);
    font-size: 1.125rem;
    font-weight: 600;
}
.hf-policy .policy-card-body {
    padding: 24px;
}
.hf-policy .policy-card-body p {
    color: #334155;
    line-height: 1.75;
    margin: 0 0 16px;
    font-size: 0.9375rem;
}
.hf-policy .policy-card-body p:last-child {
    margin-bottom: 0;
}
.hf-policy .contact-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.hf-policy .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--hf-bg);
    border-radius: 8px;
    border-left: 3px solid var(--hf-brand);
}
.hf-policy .contact-info-item i {
    color: var(--hf-brand);
    font-size: 1.1rem;
    width: 22px;
}
.hf-policy .contact-info-item span,
.hf-policy .contact-info-item a {
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.5;
    text-decoration: none;
}
.hf-policy .contact-info-item a:hover {
    color: var(--hf-brand);
}
.hf-policy .policy-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin: 16px 0;
}
.hf-policy .policy-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--hf-bg);
    border-radius: 8px;
}
.hf-policy .policy-list-item i {
    color: var(--hf-brand);
    width: 18px;
    text-align: center;
}
.hf-policy .policy-list-item span {
    color: #334155;
    font-size: 0.9375rem;
}
.hf-policy .policy-checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.hf-policy .policy-checklist li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--hf-border);
}
.hf-policy .policy-checklist li:last-child {
    border-bottom: none;
}
.hf-policy .policy-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--hf-brand);
    font-size: 0.875rem;
}
.hf-policy .policy-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--hf-gold-tint);
    border-radius: 8px;
    border-left: 4px solid var(--hf-gold);
    margin-top: 16px;
}
.hf-policy .policy-note i {
    color: var(--hf-gold-dark);
    font-size: 1.2rem;
    margin-top: 2px;
}
.hf-policy .policy-note p {
    margin: 0 !important;
    color: #64748b;
}
.hf-policy .policy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-brand) 100%);
    border-radius: 10px;
    margin-top: 20px;
}
.hf-policy .policy-highlight i {
    color: var(--hf-gold);
    font-size: 1.25rem;
    margin-top: 2px;
}
.hf-policy .policy-highlight p {
    margin: 0 !important;
    color: var(--hf-white) !important;
    line-height: 1.7;
}
.hf-policy .policy-info-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--hf-brand-tint);
    border-radius: 8px;
    margin-top: 16px;
}
.hf-policy .policy-info-box i {
    color: var(--hf-brand);
    font-size: 1.2rem;
    margin-top: 2px;
}
.hf-policy .policy-info-box p {
    margin: 0 !important;
}
.hf-policy .policy-link {
    color: var(--hf-brand);
    font-weight: 600;
    text-decoration: underline;
}
.hf-policy .policy-link:hover {
    color: var(--hf-navy);
}
.hf-policy .policy-footer {
    background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-brand) 100%);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 8px;
}
.hf-policy .policy-footer-content {
    display: flex;
    align-items: center;
    gap: 18px;
}
.hf-policy .policy-footer-content i {
    font-size: 1.75rem;
    color: var(--hf-gold);
}
.hf-policy .policy-footer-content p {
    margin: 0 0 4px !important;
    color: var(--hf-white) !important;
    font-size: 0.9375rem;
}
.hf-policy .policy-footer-content a {
    color: var(--hf-gold);
    font-weight: 600;
}
@media (max-width: 768px) {
    .hf-policy .policy-intro-card { padding: 36px 24px; }
    .hf-policy .policy-card-header,
    .hf-policy .policy-card-body { padding: 18px; }
    .hf-policy .policy-footer-content { flex-direction: column; text-align: center; }
}

.hf-whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hf-whatsapp-widget:hover {
    color: #ffffff;
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}
.hf-whatsapp-widget:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}
.hf-whatsapp-widget i {
    font-size: 1.75rem;
}
@media (max-width: 640px) {
    .hf-whatsapp-widget {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

/* ── Enquiry reason picker ── */
.hf-enquiry-picker { position: relative; z-index: 20; }
.hf-enquiry-picker__trigger-wrap { position: relative; }
.hf-enquiry-picker__trigger {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--hf-white);
    font-family: var(--hf-font-sans);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}
.hf-form--light .hf-enquiry-picker__trigger {
    background: var(--hf-bg);
    border-color: var(--hf-border);
    color: var(--hf-text);
}
.hf-enquiry-picker__trigger-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--hf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.hf-form--light .hf-enquiry-picker__trigger-icon {
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
}
.hf-enquiry-picker__trigger-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hf-enquiry-picker__trigger-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}
.hf-enquiry-picker__trigger-desc {
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.35;
}
.hf-form--light .hf-enquiry-picker__trigger-desc { color: var(--hf-muted); opacity: 1; }
.hf-enquiry-picker__chevron {
    font-size: 12px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}
.hf-enquiry-picker__trigger[aria-expanded="true"] .hf-enquiry-picker__chevron {
    transform: rotate(180deg);
}
.hf-enquiry-picker__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: var(--hf-white);
    border: 1px solid var(--hf-border);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(var(--hf-navy-rgb), 0.16);
    max-height: 320px;
    overflow-y: auto;
    z-index: 30;
}
.hf-enquiry-picker__menu li { margin: 0; }
.hf-enquiry-picker__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--hf-navy);
    font-family: var(--hf-font-sans);
    text-align: left;
    cursor: pointer;
}
.hf-enquiry-picker__option:hover,
.hf-enquiry-picker__option.is-selected {
    background: rgba(var(--hf-brand-rgb), 0.08);
}
.hf-enquiry-picker__option-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.hf-enquiry-picker__option-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hf-enquiry-picker__option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--hf-navy);
}
.hf-enquiry-picker__option-desc {
    font-size: 12px;
    color: var(--hf-muted);
    line-height: 1.35;
}
.hf-enquiry-picker__check {
    color: var(--hf-brand);
    font-size: 13px;
    opacity: 0;
}
.hf-enquiry-picker__option.is-selected .hf-enquiry-picker__check { opacity: 1; }

/* ── Residential quote details ── */
.hf-residential {
    border: 1px solid rgba(var(--hf-brand-rgb), 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}
.hf-residential--light {
    background: var(--hf-white);
    border-color: var(--hf-border);
    box-shadow: inset 0 0 0 1px rgba(var(--hf-brand-rgb), 0.06);
}
.hf-residential__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(var(--hf-brand-rgb), 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hf-residential--light .hf-residential__header {
    background: rgba(var(--hf-brand-rgb), 0.06);
    border-bottom-color: var(--hf-border);
}
.hf-residential__header-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--hf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.hf-residential--light .hf-residential__header-icon {
    background: var(--hf-brand-soft);
    color: var(--hf-brand);
}
.hf-residential__header-copy {
    flex: 1;
    min-width: 0;
}
.hf-residential__header-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    line-height: 1.3;
}
.hf-residential__header-sub {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.8;
}
.hf-residential--light .hf-residential__header-sub {
    color: var(--hf-muted);
    opacity: 1;
}
.hf-residential__close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.hf-residential__close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.hf-residential--light .hf-residential__close {
    background: var(--hf-bg);
    color: var(--hf-muted);
}
.hf-residential--light .hf-residential__close:hover {
    background: var(--hf-border);
}
.hf-residential__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hf-residential__section {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hf-residential--light .hf-residential__section {
    border-bottom-color: var(--hf-border);
}
.hf-residential__section--last {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.hf-residential__section-title {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
}
.hf-residential--light .hf-residential__section-title {
    color: var(--hf-muted);
}
.hf-residential .hf-field--inset {
    margin-bottom: 0;
    gap: 6px;
}
.hf-residential .hf-field--inset label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}
.hf-residential--light .hf-field--inset label {
    color: var(--hf-muted);
}
.hf-residential .hf-field--inset input,
.hf-residential .hf-field--inset select,
.hf-residential--light .hf-field--inset input,
.hf-residential--light .hf-field--inset select,
.hf-residential .hf-field--inset textarea,
.hf-residential--light .hf-field--inset textarea {
    min-height: 44px;
}
.hf-residential--light .hf-field--inset input,
.hf-residential--light .hf-field--inset select,
.hf-residential--light .hf-field--inset textarea {
    background: var(--hf-bg);
    border-color: var(--hf-border);
    color: var(--hf-text);
}
.hf-residential--light .hf-field--inset select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.hf-residential__grid {
    display: grid;
    gap: 12px;
    align-items: start;
}
.hf-residential__stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hf-residential--compact .hf-residential__grid--service,
.hf-residential--compact .hf-residential__grid--address {
    grid-template-columns: 1fr;
}
.hf-residential--wide .hf-residential__grid--service {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hf-residential--wide .hf-residential__grid--address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
    .hf-residential--wide .hf-residential__grid--service {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .hf-residential--wide .hf-residential__grid--address {
        grid-template-columns: 1fr;
    }
}
.hf-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.75;
    font-size: 10px;
}
.hf-room-counters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.hf-residential--wide .hf-room-counters {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}
.hf-room-counter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.hf-residential--light .hf-room-counter {
    border-color: var(--hf-border);
    background: var(--hf-bg);
}
.hf-room-counter__label {
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    line-height: 1.35;
    min-width: 0;
}
.hf-room-counter__control {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.hf-form .hf-room-counter__btn,
.hf-room-counter__btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.hf-room-counter__btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}
.hf-residential--light .hf-room-counter__btn {
    border-color: var(--hf-border);
    background: var(--hf-white);
    color: var(--hf-brand);
}
.hf-residential--light .hf-room-counter__btn:hover {
    border-color: var(--hf-brand);
    background: var(--hf-brand-soft);
}
.hf-form .hf-room-counter__value,
.hf-room-counter__value {
    width: 24px !important;
    min-width: 24px;
    max-width: 24px;
    min-height: 28px !important;
    height: 28px;
    text-align: center;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 0 !important;
    margin: 0;
    box-shadow: none !important;
    flex-shrink: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}
.hf-room-counter__value::-webkit-outer-spin-button,
.hf-room-counter__value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.hf-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.hf-residential--wide .hf-addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 640px) {
    .hf-residential--wide .hf-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.hf-addon {
    position: relative;
    display: block;
    min-height: 92px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hf-residential--light .hf-addon {
    border-color: var(--hf-border);
    background: var(--hf-bg);
}
.hf-addon input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.hf-addon:has(input:checked) {
    border-color: var(--hf-brand-light);
    background: rgba(var(--hf-brand-rgb), 0.16);
    box-shadow: inset 0 0 0 1px rgba(var(--hf-brand-rgb), 0.35);
}
.hf-residential--light .hf-addon:has(input:checked) {
    border-color: var(--hf-brand);
    background: var(--hf-brand-soft);
    box-shadow: none;
}
.hf-addon__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 92px;
    padding: 14px 10px;
    pointer-events: none;
    text-align: center;
}
.hf-addon__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.hf-addon__icon i {
    display: block;
    font-size: 15px;
    line-height: 1;
    width: 1em;
    text-align: center;
}
.hf-residential--light .hf-addon__icon {
    background: var(--hf-white);
    color: var(--hf-brand);
}
.hf-addon__label {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    padding: 0 2px;
}
.hf-residential .hf-field--inset textarea {
    min-height: 110px;
}

.hf-form input[type="datetime-local"] {
    color-scheme: dark;
}
.hf-form--light input[type="datetime-local"] {
    color-scheme: light;
}
