/* ================================================
   site.css — Redesign HommeDeMetier.be
   Header, Hero, Coverage, Footer (non-blog pages)
   ================================================ */

/* ─── Header ─────────────────────────────────────────── */

* {
    scroll-behavior: smooth !important;
}

.pointer {
    cursor: pointer !important;
}
header.header_area .top_menu { display: none; }

header.header_area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 7rem;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transform: none !important;
    animation: none !important;
    transition: box-shadow 0.25s ease !important;
}

header.header_area .main_menu {
    height: 7rem;
    background: #fff;
}

.hdm-header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.4rem;
    padding: 0 1.5rem;
}

.hdm-header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #e22104;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.hdm-header-logo img { height: 3.4rem; width: auto; }
.hdm-header-logo:hover { color: #c41c03; }

.hdm-nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.hdm-nav-link {
    font-size: 1.5rem;
    font-family: 'Ubuntu', sans-serif;
    color: #444;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 0.8rem;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
}

.hdm-nav-link:hover { color: #e22104; background: rgba(226,33,4,0.06); }

.hdm-nav-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    background: #4267b2;
    color: #fff;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    text-decoration: none;
    transition: background 0.18s;
    flex-shrink: 0;
    margin-left: 0.4rem;
}

.hdm-nav-fb:hover { background: #365899; color: #fff; }

.hdm-nav-phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #e22104;
    color: #fff;
    border-radius: 0.8rem;
    padding: 0.9rem 1.8rem;
    font-size: 1.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
    margin-left: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.hdm-nav-phone:hover { background: #c41c03; color: #fff; transform: translateY(-1px); }

.hdm-burger {
    display: none;
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 0.7rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    margin-left: auto;
    flex-direction: column;
}

.hdm-burger span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.25s;
}

@media (max-width: 900px) {
    .hdm-burger { display: flex; }
    .hdm-header-inner { padding: 0 1.5rem; }

    .hdm-nav-links {
        display: none;
        position: absolute;
        top: 7rem;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.6rem 1.6rem;
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;
        gap: 0.3rem;
        z-index: 999;
    }

    .hdm-nav-links.open { display: flex; }
    .hdm-nav-link { padding: 1.1rem 1.2rem; text-align: center; }
    .hdm-nav-fb { width: 100%; height: auto; padding: 1rem; margin-left: 0; }
    .hdm-nav-phone { margin-left: 0; justify-content: center; }
}

/* ─── Homepage Hero ──────────────────────────────────── */

.hdm-hero {
    position: relative;
    background: #111827;
    padding: 14rem 0 9rem;
    overflow: hidden;
    margin-top: 0;
}

.hdm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(226,33,4,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hdm-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hdm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(226,33,4,0.1);
    color: #e22104;
    border: 1px solid rgba(226,33,4,0.22);
    border-radius: 2rem;
    padding: 0.5rem 1.4rem;
    font-size: 1.3rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hdm-hero h1 {
    font-size: 5.2rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hdm-hero h1 .accent { color: #e22104; }

.hdm-hero h2 {
    font-size: 1.8rem !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    font-family: 'Heebo', sans-serif !important;
    margin-bottom: 3.6rem !important;
}

.hdm-hero h2 a {
    color: rgba(255,255,255,0.82) !important;
    text-decoration: underline;
    text-decoration-color: rgba(226,33,4,0.4);
    text-underline-offset: 3px;
}

.hdm-hero h2 a:hover { color: #e22104 !important; }

.hdm-hero-actions {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.hdm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #e22104;
    color: #fff;
    border-radius: 1rem;
    padding: 1.4rem 2.8rem;
    font-size: 1.6rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(226,33,4,0.3);
}

.hdm-btn-primary:hover {
    background: #c41c03;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(226,33,4,0.42);
}

.hdm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1rem;
    padding: 1.4rem 2.4rem;
    font-size: 1.6rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s, border-color 0.18s;
}

.hdm-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.42); }

/* Trust cards */
.hdm-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

.hdm-trust-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.6rem;
    padding: 2.8rem 2rem;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}

.hdm-trust-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.14);
}

.hdm-trust-num {
    display: block;
    font-size: 3.4rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #e22104;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.hdm-trust-label {
    display: block;
    font-size: 1.35rem;
    color: rgba(255,255,255,0.42);
    font-family: 'Heebo', sans-serif;
    line-height: 1.4;
}

.hdm-angle {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    line-height: 0;
}

.hdm-angle svg { width: 100%; height: 50px; display: block; }

@media (max-width: 991px) {
    .hdm-hero-inner { grid-template-columns: 1fr; gap: 5rem; }
    .hdm-trust-grid { grid-template-columns: repeat(4, 1fr); }
    .hdm-trust-card { padding: 2rem 1.4rem; }
    .hdm-trust-num { font-size: 2.8rem; }
    .hdm-hero h1 { font-size: 4rem; }
}

@media (max-width: 600px) {
    .hdm-hero { padding: 11rem 0 8rem; }
    .hdm-hero h1 { font-size: 3.2rem; }
    .hdm-trust-grid { grid-template-columns: 1fr 1fr; }
    .hdm-trust-card { padding: 2rem 1.2rem; }
    .hdm-hero-actions { flex-direction: column; }
    .hdm-btn-primary, .hdm-btn-ghost { justify-content: center; text-align: center; }
}

/* ─── Coverage (replaces Google Map) ────────────────── */

.hdm-coverage {
    background: #111827;
    padding: 8rem 0 7rem;
}

.hdm-coverage .area-heading { margin-bottom: 4rem; }

.hdm-coverage .area-heading h3,
.hdm-coverage .area-heading .line { color: #fff !important; }

.hdm-coverage .area-heading .line::after { background: #e22104; }

.hdm-coverage .area-heading p { color: rgba(255,255,255,0.48) !important; }

.hdm-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.hdm-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10rem;
    padding: 0.9rem 2rem;
    font-size: 1.45rem;
    font-family: 'Heebo', sans-serif;
    color: rgba(255,255,255,0.68);
    transition: all 0.18s;
}

.hdm-city-pill i { color: #e22104; font-size: 1.1rem; }

.hdm-city-pill:hover {
    background: rgba(226,33,4,0.1);
    border-color: rgba(226,33,4,0.25);
    color: #fff;
    cursor: default;
}

.hdm-coverage-cta { text-align: center; }

/* ─── Footer ─────────────────────────────────────────── */

footer.footer-area { display: none; }

.hdm-footer {
    background: #0d1117;
    padding: 7rem 0 0;
    font-family: 'Heebo', sans-serif;
}

.hdm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hdm-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.hdm-footer-logo-link img { height: 3.2rem; width: auto; }
.hdm-footer-logo-link:hover { color: #e22104; }

.hdm-footer-tagline {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.36);
    line-height: 1.65;
    max-width: 30rem;
    margin-bottom: 0;
}

.hdm-footer-col h6 {
    font-size: 1.15rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: rgba(255,255,255,0.28);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
}

.hdm-footer-col ul { list-style: none; padding: 0; margin: 0; }
.hdm-footer-col li { margin-bottom: 1.1rem; font-size: 1.45rem; }

.hdm-footer-col a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color 0.18s;
}

.hdm-footer-col a:hover { color: #e22104; }

.hdm-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    color: rgba(255,255,255,0.52);
}

.hdm-footer-contact-item i {
    color: #e22104;
    width: 1.6rem;
    flex-shrink: 0;
}

.hdm-footer-contact-item a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color 0.18s;
}

.hdm-footer-contact-item a:hover { color: #e22104; }

.hdm-footer-hours {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.65;
    margin-top: 1.6rem;
    margin-bottom: 0;
}

.hdm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.2rem 0;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.22);
    flex-wrap: wrap;
}

.hdm-footer-legal {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.hdm-footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s;
}

.hdm-footer-legal a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 768px) {
    .hdm-footer-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .hdm-footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; }
    .hdm-footer-legal { justify-content: center; }
}

/* ─── Services section ──────────────────────────────── */

/* Filter pills */
section#nos-services .button-group-area {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

section#nos-services .button-group-area .service-category {
    background: #fff !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 10rem !important;
    padding: 0.7rem 2rem !important;
    font-size: 1.4rem !important;
    font-family: 'Ubuntu', sans-serif !important;
    color: #555 !important;
    transition: all 0.18s !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
}

section#nos-services .button-group-area .service-category.active,
section#nos-services .button-group-area .service-category:hover {
    background: #e22104 !important;
    border-color: #e22104 !important;
    color: #fff !important;
}

/* Search */
section#nos-services .search-engine .input-group {
    max-width: 50rem;
    margin: 0 auto;
}

section#nos-services .search-engine .icon-search {
    background-color: #e22104 !important;
    border-color: #e22104 !important;
    border-radius: 0.8rem 0 0 0.8rem !important;
    height: 4.8rem;
}

section#nos-services .search-engine input#search-service {
    height: 4.8rem !important;
    font-size: 1.6rem !important;
    border-color: #e8e8e8 !important;
    border-left: none !important;
    border-radius: 0 0.8rem 0.8rem 0 !important;
}

section#nos-services .search-engine input#search-service:focus {
    border-color: #e22104 !important;
    box-shadow: 0 0 0 3px rgba(226,33,4,0.1) !important;
}

/* Cards */
section#nos-services div.single-service {
    background: #fff !important;
    border-radius: 1.6rem !important;
    border: 1.5px solid #f0f0f0 !important;
    padding: 2.6rem 2.2rem 2.2rem !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s !important;
    min-height: auto !important;
    text-align: center;
}

section#nos-services div.single-service:hover {
    border-color: rgba(226,33,4,0.28) !important;
    box-shadow: 0 10px 36px rgba(0,0,0,0.1) !important;
    transform: translateY(-4px);
}

/* Supprime le cercle offset du thème, remplace par un cercle centré */
section#nos-services .service-icon::after,
section#nos-services .service-icon::before {
    display: none !important;
    content: none !important;
}

section#nos-services .service-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 8.4rem !important;
    height: 8.4rem !important;
    border-radius: 50% !important;
    background: rgba(226,33,4,0.07) !important;
    margin: 0 auto 2rem auto !important;
    padding: 0 !important;
    position: static !important;
    z-index: auto !important;
}

section#nos-services .service-icon img {
    position: static !important;
    width: 4.6rem !important;
    height: 4.6rem !important;
    max-width: none !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    object-fit: contain !important;
}

section#nos-services .service-content h5 {
    font-size: 1.6rem !important;
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 0.7rem !important;
    line-height: 1.3;
    transition: color 0.18s;
}

section#nos-services div.single-service:hover .service-content h5 {
    color: #e22104 !important;
}

section#nos-services .service-content p {
    font-size: 1.4rem !important;
    color: #8a8a8a !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
}

@media (min-width: 770px) {
    section#nos-services div.single-service { min-height: auto !important; }
}
@media (min-width: 1200px) {
    section#nos-services div.single-service { min-height: auto !important; }
}

/* ─── Comment ça marche ─────────────────────────────── */

.hdm-how {
    background: #fff;
    padding: 9rem 0 7rem;
}

.hdm-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
}

.hdm-step {
    position: relative;
    text-align: center;
    padding: 3.6rem 2.8rem 3rem;
    background: #f8f9fa;
    border-radius: 2rem;
    border: 1.5px solid #f0f0f0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}

.hdm-step:hover {
    border-color: rgba(226,33,4,0.2);
    box-shadow: 0 10px 36px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

/* Grand numéro décoratif en fond */
.hdm-step::before {
    content: attr(data-step);
    position: absolute;
    top: -1.5rem;
    right: 1.2rem;
    font-size: 11rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: rgba(226,33,4,0.055);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hdm-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: #e22104;
    margin: 0 auto 2.2rem auto;
    color: #fff;
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(226,33,4,0.3);
    transition: transform 0.18s, box-shadow 0.18s;
}

.hdm-step:hover .hdm-step-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(226,33,4,0.4);
}

.hdm-step h3 {
    font-size: 1.85rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hdm-step p {
    font-size: 1.45rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.hdm-step-arrow {
    color: rgba(226,33,4,0.3);
    font-size: 2.2rem;
    flex-shrink: 0;
    padding: 0 0.8rem;
}

.hdm-how-cta {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 900px) {
    .hdm-steps {
        grid-template-columns: 1fr;
        max-width: 44rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hdm-step-arrow { transform: rotate(90deg); }
}

/* ─── FAQ ───────────────────────────────────────────── */

.hdm-faq {
    background: #f3f4f6;
    padding: 9rem 0 8rem;
}

.hdm-faq-list {
    max-width: 76rem;
    margin: 0 auto;
}

.hdm-faq-item {
    background: #fff;
    border-radius: 1.4rem;
    border: 1.5px solid #ebebeb;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.hdm-faq-item.hdm-open {
    border-color: rgba(226,33,4,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hdm-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: none;
    border: none;
    padding: 2.2rem 2.4rem;
    font-size: 1.65rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: color 0.18s;
}

.hdm-faq-q:hover { color: #e22104; }
.hdm-faq-item.hdm-open .hdm-faq-q { color: #e22104; }

.hdm-faq-chevron {
    flex-shrink: 0;
    color: #bbb;
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.18s;
}

.hdm-faq-item.hdm-open .hdm-faq-chevron {
    transform: rotate(180deg);
    color: #e22104;
}

.hdm-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s ease;
}

.hdm-faq-a p {
    padding: 0 2.4rem 2.4rem;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.8rem;
}

.hdm-faq-a p a { color: #e22104; }
.hdm-faq-a p strong { color: #1a1a1a; }

/* ─── Contact page ──────────────────────────────────── */

.hdm-contact-hero {
    position: relative;
    background: #111827;
    padding: 13rem 0 7rem;
    overflow: hidden;
    text-align: center;
}

.hdm-contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(226,33,4,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hdm-contact-hero .hdm-hero-eyebrow {
    margin: 0 auto 2rem auto;
}

.hdm-contact-hero h1 {
    font-size: 4.8rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.hdm-contact-hero h1 .accent { color: #e22104; }

.hdm-contact-hero-sub {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.52);
    font-family: 'Heebo', sans-serif;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.hdm-contact-body {
    background: #f3f4f6;
    padding: 7rem 0 8rem;
}

.hdm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 42rem;
    gap: 3.6rem;
    align-items: start;
}

/* Form card */
.hdm-contact-card {
    background: #fff;
    border-radius: 2rem;
    border: 1.5px solid #ebebeb;
    padding: 4rem 3.6rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.hdm-contact-card-title {
    font-size: 2.2rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.hdm-contact-card-sub {
    font-size: 1.45rem;
    color: #999;
    margin-bottom: 2.8rem;
}

.hdm-form-group {
    margin-bottom: 2rem;
}

.hdm-form-group label {
    display: block;
    font-size: 1.4rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.7rem;
}

.hdm-input {
    display: block;
    width: 100%;
    background: #f8f9fa !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 1rem !important;
    padding: 1.2rem 1.6rem !important;
    font-size: 1.55rem !important;
    font-family: 'Heebo', sans-serif !important;
    color: #1a1a1a !important;
    transition: border-color 0.18s, box-shadow 0.18s !important;
    outline: none !important;
    box-shadow: none !important;
}

.hdm-input:focus {
    border-color: #e22104 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(226,33,4,0.1) !important;
}

.hdm-input::placeholder { color: #bbb !important; }

textarea.hdm-input { resize: vertical; min-height: 2rem; height: auto !important; }

.hdm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.hdm-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    margin-bottom: 2.4rem;
}

.hdm-form-consent p {
    font-size: 1.3rem;
    color: #999;
    line-height: 1.55;
    margin: 0;
}

.hdm-form-submit {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hdm-form-submit .hdm-btn-primary {
    border: none;
    cursor: pointer;
}

.hdm-form-submit .hdm-btn-primary:disabled,
.hdm-form-submit .hdm-btn-primary[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Info sidebar */
.hdm-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.hdm-cinfo-card {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    background: #fff;
    border-radius: 1.6rem;
    border: 1.5px solid #ebebeb;
    padding: 2rem 2.4rem;
    text-decoration: none;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.hdm-cinfo-card:hover {
    border-color: rgba(226,33,4,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.hdm-cinfo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(226,33,4,0.08);
    color: #e22104;
    font-size: 1.9rem;
    flex-shrink: 0;
}

.hdm-cinfo-value {
    display: block;
    font-size: 1.7rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.hdm-cinfo-label {
    display: block;
    font-size: 1.3rem;
    color: #999;
    font-family: 'Heebo', sans-serif;
}

.hdm-cinfo-hours {
    background: #fff;
    border-radius: 1.6rem;
    border: 1.5px solid #ebebeb;
    padding: 2.4rem 2.4rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.hdm-cinfo-hours h3 {
    font-size: 1.6rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.4rem;
}

.hdm-cinfo-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdm-cinfo-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    color: #666;
    font-family: 'Heebo', sans-serif;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.hdm-cinfo-hours li:last-child { border-bottom: none; }

.hdm-cinfo-trust {
    background: #111827;
    border-radius: 1.6rem;
    padding: 2.4rem;
}

.hdm-cinfo-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    font-family: 'Heebo', sans-serif;
    color: rgba(255,255,255,0.68);
    line-height: 1.45;
}

.hdm-cinfo-trust-item:last-child { margin-bottom: 0; }

.hdm-cinfo-trust-item i {
    color: #e22104;
    font-size: 1.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hdm-contact-grid { grid-template-columns: 1fr; }
    .hdm-contact-info { flex-direction: row; flex-wrap: wrap; }
    .hdm-cinfo-card { flex: 1 1 calc(50% - 0.8rem); }
    .hdm-cinfo-hours,
    .hdm-cinfo-trust { flex: 1 1 calc(50% - 0.8rem); }
}

@media (max-width: 600px) {
    .hdm-contact-hero { padding: 11rem 0 5rem; }
    .hdm-contact-hero h1 { font-size: 3.4rem; }
    .hdm-contact-card { padding: 2.8rem 2rem; }
    .hdm-form-row { grid-template-columns: 1fr; gap: 0; }
    .hdm-contact-info { flex-direction: column; }
    .hdm-cinfo-card,
    .hdm-cinfo-hours,
    .hdm-cinfo-trust { flex: 1 1 100%; }
}
