/* ==========================================================================
   Hartwell Maritime — Custom Styles
   Adaptat din design-ul HTML original pentru WordPress + GP Pro
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --navy-900: #0a1628;
    --navy-800: #0f1f3a;
    --navy-700: #15294d;
    --navy-600: #1c3461;
    --navy-500: #234075;
    --navy-400: #3a5a99;
    --gold-500: #c9a84c;
    --gold-400: #d4b96a;
    --gold-300: #e0cb8e;
    --white: #fff;
    --gray-100: #f3f5f8;
    --gray-200: #e1e5ec;
    --gray-300: #c5ccda;
    --gray-400: #8d96a8;
    --gray-500: #5a6478;
    --text-dark: #0d1b2e;
    --text-body: #374151;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   2. GP Pro Overrides — Global Typography & Colors
   -------------------------------------------------------------------------- */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    letter-spacing: -.02em;
}

a {
    color: var(--navy-700);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--gold-500);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. GP Pro Header Overrides
   -------------------------------------------------------------------------- */
.site-header {
    background: rgba(10, 22, 40, .92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header .site-title,
.site-header .site-title a {
    color: var(--white) !important;
    font-family: var(--font-display);
    font-weight: 700;
}

.site-header .site-title a span {
    color: var(--gold-500);
}

/* Navigation Links */
.main-navigation a,
.main-navigation .main-nav ul li a {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    opacity: .85;
    transition: opacity .2s, color .2s;
}

.main-navigation a:hover,
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item > a {
    color: var(--gold-400) !important;
    opacity: 1;
}

/* Mobile Menu */
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus {
    color: var(--white) !important;
}

/* Body padding for fixed header */
body {
    padding-top: 60px;
}

/* Language Switcher in Header */
.hwm-lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
}

.hwm-lang-switcher a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300) !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: color .2s, background .2s;
}

.hwm-lang-switcher a:hover,
.hwm-lang-switcher a.active {
    color: var(--white) !important;
    background: rgba(255,255,255,.08);
}

.hwm-lang-switcher img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    display: inline;
}

/* Header CTA Button */
.hwm-header-cta a {
    padding: 10px 20px !important;
    background: var(--gold-500) !important;
    color: var(--navy-900) !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    transition: background .2s, transform .15s;
}

.hwm-header-cta a:hover {
    background: var(--gold-400) !important;
}

/* --------------------------------------------------------------------------
   4. Section Utilities
   -------------------------------------------------------------------------- */
.hwm-section {
    padding: 72px 20px;
}

.hwm-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hwm-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.hwm-section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.hwm-section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Dark section variants */
.hwm-section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.hwm-section-dark .hwm-section-heading {
    color: var(--white);
}

.hwm-section-dark .hwm-section-desc {
    color: var(--gray-300);
}

.hwm-section-dark .hwm-section-label {
    color: var(--gold-400);
}

.hwm-section-gray {
    background: var(--gray-100);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hwm-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hwm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hwm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwm-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, rgba(10,22,40,.92) 0%, rgba(15,31,58,.85) 40%, rgba(10,22,40,.80) 100%);
}

.hwm-hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}

.hwm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hwm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hwm-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: hwm-pulse 2s infinite;
}

@keyframes hwm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hwm-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hwm-hero h1 em {
    font-style: normal;
    color: var(--gold-400);
}

.hwm-hero-sub {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--gray-200);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hwm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hwm-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hwm-hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1.1;
}

.hwm-hero-stat-label {
    font-size: 12px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.hwm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.hwm-btn-primary:hover {
    background: var(--gold-400);
    color: var(--navy-900);
}

.hwm-btn-primary:active {
    transform: scale(.97);
}

.hwm-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.hwm-btn-secondary:hover {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.12);
    color: var(--white);
}

.hwm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--gold-500);
    color: var(--gold-500);
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.hwm-btn-outline:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* --------------------------------------------------------------------------
   7. Photo Strip
   -------------------------------------------------------------------------- */
.hwm-photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 200px;
    overflow: hidden;
}

.hwm-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

@media (max-width: 600px) {
    .hwm-photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 160px;
    }
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.hwm-about-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 769px) {
    .hwm-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
}

.hwm-about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hwm-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwm-about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(10,22,40,.88));
}

.hwm-about-image-overlay p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    opacity: .9;
}

.hwm-about-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
}

.hwm-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.hwm-about-highlight {
    padding: 16px;
    border-radius: 8px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.hwm-about-highlight-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-700);
}

.hwm-about-highlight-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   9. Service Cards
   -------------------------------------------------------------------------- */
.hwm-services-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .hwm-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hwm-services-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hwm-service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s, transform .2s;
}

.hwm-service-card:hover {
    box-shadow: 0 8px 32px rgba(10,22,40,.08);
    transform: translateY(-2px);
}

.hwm-service-card-img {
    height: 140px;
    overflow: hidden;
}

.hwm-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.hwm-service-card:hover .hwm-service-card-img img {
    transform: scale(1.06);
}

.hwm-service-card-body {
    padding: 20px;
}

.hwm-service-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hwm-service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. Service Models (detailed blocks — About page)
   -------------------------------------------------------------------------- */
.hwm-service-model {
    padding: 32px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.hwm-service-model h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hwm-service-model-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 100px;
    color: var(--gold-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hwm-service-model p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.hwm-service-model ul {
    list-style: none;
    padding: 0;
}

.hwm-service-model ul li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 6px;
}

.hwm-service-model ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
}

/* --------------------------------------------------------------------------
   11. Process Steps
   -------------------------------------------------------------------------- */
.hwm-process-steps {
    display: grid;
    gap: 0;
    counter-reset: step;
}

.hwm-process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding-bottom: 32px;
    position: relative;
    counter-increment: step;
}

.hwm-process-step:last-child {
    padding-bottom: 0;
}

.hwm-step-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-400);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hwm-process-step:not(:last-child) .hwm-step-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 32px - 44px);
    background: linear-gradient(var(--navy-700), var(--gray-200));
    z-index: 1;
}

.hwm-step-content h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    padding-top: 10px;
}

.hwm-step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

@media (min-width: 769px) {
    .hwm-process-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    .hwm-process-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 0;
    }

    .hwm-step-marker {
        margin: 0 auto 12px;
    }

    .hwm-process-step:not(:last-child) .hwm-step-marker::after {
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        width: calc(100% + 24px - 44px);
        height: 2px;
    }
}

/* --------------------------------------------------------------------------
   12. Photo Divider
   -------------------------------------------------------------------------- */
.hwm-photo-divider {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.hwm-photo-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwm-photo-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,.5) 0%, rgba(10,22,40,.2) 50%, rgba(10,22,40,.5) 100%);
}

.hwm-photo-divider-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hwm-photo-divider-text h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.hwm-photo-divider-text p {
    font-size: 15px;
    color: var(--gray-200);
    max-width: 480px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

@media (max-width: 600px) {
    .hwm-photo-divider {
        height: 240px;
    }
}

/* --------------------------------------------------------------------------
   13. Market Cards
   -------------------------------------------------------------------------- */
.hwm-markets-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .hwm-markets-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hwm-market-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    transition: background .25s, border-color .25s;
}

.hwm-market-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(201,168,76,.2);
}

.hwm-market-card-img {
    height: 140px;
    overflow: hidden;
}

.hwm-market-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .3s, transform .4s;
}

.hwm-market-card:hover .hwm-market-card-img img {
    opacity: .85;
    transform: scale(1.04);
}

.hwm-market-card-body {
    padding: 20px 20px 24px;
}

.hwm-market-flag {
    font-size: 24px;
    margin-bottom: 8px;
}

.hwm-market-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.hwm-market-card p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.65;
    margin-bottom: 12px;
}

.hwm-market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hwm-market-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 100px;
    color: var(--gold-300);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   14. Why Us Cards
   -------------------------------------------------------------------------- */
.hwm-why-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .hwm-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hwm-why-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hwm-why-card {
    padding: 28px 24px;
    border-radius: 10px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.hwm-why-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.hwm-why-card-icon svg {
    width: 18px;
    height: 18px;
}

.hwm-why-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hwm-why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   15. Workers Section (RO)
   -------------------------------------------------------------------------- */
.hwm-workers {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 72px 20px;
}

.hwm-workers-bg {
    position: absolute;
    inset: 0;
}

.hwm-workers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwm-workers-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(10,22,40,.94) 0%, rgba(15,31,58,.90) 100%);
}

.hwm-workers .hwm-section-inner {
    position: relative;
    z-index: 2;
}

.hwm-workers-content {
    max-width: 680px;
}

.hwm-worker-benefits {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.hwm-worker-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
}

.hwm-worker-benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(201,168,76,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.hwm-worker-benefit-check svg {
    width: 12px;
    height: 12px;
}

.hwm-worker-benefit p {
    font-size: 14px;
    color: var(--gray-200);
    line-height: 1.6;
}

.hwm-worker-benefit strong {
    color: var(--white);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. Contact Section & Forms
   -------------------------------------------------------------------------- */
.hwm-contact-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 769px) {
    .hwm-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hwm-contact-info p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hwm-contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hwm-contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hwm-contact-detail-icon svg {
    width: 18px;
    height: 18px;
    color: var(--navy-700);
}

.hwm-contact-detail-text {
    font-size: 14px;
}

.hwm-contact-detail-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 13px;
}

.hwm-contact-detail-text span {
    color: var(--gray-500);
}

/* Contact Form Styling (CF7 override) */
.hwm-contact-form {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px 24px;
}

.hwm-contact-form h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hwm-contact-form .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hwm-contact-form .wpcf7-form input[type="text"],
.hwm-contact-form .wpcf7-form input[type="email"],
.hwm-contact-form .wpcf7-form input[type="tel"],
.hwm-contact-form .wpcf7-form input[type="number"],
.hwm-contact-form .wpcf7-form textarea,
.hwm-contact-form .wpcf7-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color .2s;
    -webkit-appearance: none;
    margin-bottom: 16px;
}

.hwm-contact-form .wpcf7-form input:focus,
.hwm-contact-form .wpcf7-form textarea:focus,
.hwm-contact-form .wpcf7-form select:focus {
    outline: none;
    border-color: var(--navy-400);
}

.hwm-contact-form .wpcf7-form textarea {
    resize: vertical;
    min-height: 100px;
}

.hwm-contact-form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px;
    background: var(--navy-800);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.hwm-contact-form .wpcf7-form input[type="submit"]:hover {
    background: var(--navy-700);
}

/* --------------------------------------------------------------------------
   17. FAQ Accordion
   -------------------------------------------------------------------------- */
.hwm-faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.hwm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color .2s;
}

.hwm-faq-question:hover {
    color: var(--gold-500);
}

.hwm-faq-question svg {
    flex-shrink: 0;
    transition: transform .3s;
}

.hwm-faq-item.active .hwm-faq-question svg {
    transform: rotate(180deg);
}

.hwm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.hwm-faq-item.active .hwm-faq-answer {
    max-height: 500px;
}

.hwm-faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. Values Cards (About page)
   -------------------------------------------------------------------------- */
.hwm-values-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .hwm-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hwm-value-card {
    padding: 28px 24px;
    border-radius: 10px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.hwm-value-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hwm-value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   19. Team Cards (About page)
   -------------------------------------------------------------------------- */
.hwm-team-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 600px) {
    .hwm-team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hwm-team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.hwm-team-card-img {
    height: 240px;
    overflow: hidden;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hwm-team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwm-team-card-body {
    padding: 24px;
}

.hwm-team-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.hwm-team-card .hwm-team-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.hwm-team-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   20. Trades Table (Services page)
   -------------------------------------------------------------------------- */
.hwm-trades-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.hwm-trades-table thead th {
    background: var(--navy-800);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hwm-trades-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-body);
    line-height: 1.6;
}

.hwm-trades-table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.hwm-trades-table tbody tr:hover {
    background: rgba(201,168,76,.05);
}

/* Responsive table */
@media (max-width: 600px) {
    .hwm-trades-table,
    .hwm-trades-table thead,
    .hwm-trades-table tbody,
    .hwm-trades-table th,
    .hwm-trades-table td,
    .hwm-trades-table tr {
        display: block;
    }

    .hwm-trades-table thead {
        display: none;
    }

    .hwm-trades-table tbody td {
        padding: 8px 16px;
        text-align: left;
    }

    .hwm-trades-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-dark);
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .hwm-trades-table tbody tr {
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        overflow: hidden;
    }
}

/* --------------------------------------------------------------------------
   21. Checklist (What's Included)
   -------------------------------------------------------------------------- */
.hwm-checklist {
    display: grid;
    gap: 12px;
}

@media (min-width: 600px) {
    .hwm-checklist {
        grid-template-columns: 1fr 1fr;
    }
}

.hwm-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--gray-100);
    border-radius: 8px;
}

.hwm-checklist-item .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.hwm-checklist-item .check-icon svg {
    width: 10px;
    height: 10px;
    color: #16a34a;
}

.hwm-checklist-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   22. GP Pro Footer Overrides
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--navy-900) !important;
    border-top: 1px solid rgba(255,255,255,.06);
    color: var(--gray-400);
}

.site-footer a {
    color: var(--gray-400);
    transition: color .2s;
}

.site-footer a:hover {
    color: var(--gold-400);
}

.site-footer .footer-widget-area {
    padding: 48px 20px 32px;
}

.site-footer h4,
.site-footer .widget-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-300) !important;
    margin-bottom: 14px;
}

.site-footer .site-info {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    font-size: 12px;
    color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   23. CTA Full-Width Band
   -------------------------------------------------------------------------- */
.hwm-cta-band {
    background: var(--navy-900);
    text-align: center;
    padding: 64px 20px;
}

.hwm-cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.hwm-cta-band p {
    color: var(--gray-300);
    margin-bottom: 28px;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   24. Animations
   -------------------------------------------------------------------------- */
.hwm-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.hwm-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   25. GDPR Consent Checkbox (Forms)
   -------------------------------------------------------------------------- */
.hwm-gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.hwm-gdpr-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   26. Mobile Responsive Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .hwm-section {
        padding: 56px 16px;
    }

    .hwm-hero {
        padding: 90px 16px 48px;
    }

    .hwm-hero-stats {
        gap: 12px;
    }

    .hwm-hero-stat-label {
        font-size: 11px;
    }

    .hwm-about-highlights {
        grid-template-columns: 1fr;
    }

    .hwm-contact-form {
        padding: 20px 16px;
    }

    .hwm-service-card-img {
        height: 120px;
    }

    .hwm-market-card-img {
        height: 110px;
    }
}

@media (hover: none) {
    .hwm-service-card:hover,
    .hwm-market-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* --------------------------------------------------------------------------
   27. Workers Registration Form (B2C) — specific styling
   -------------------------------------------------------------------------- */
.hwm-worker-form {
    background: var(--white);
    border: 2px solid var(--gold-500);
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 600px;
}

.hwm-worker-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hwm-worker-form .hwm-form-legal-note {
    font-size: 13px;
    color: var(--gray-500);
    padding: 12px 16px;
    background: rgba(34, 197, 94, .06);
    border: 1px solid rgba(34, 197, 94, .15);
    border-radius: 8px;
    margin-top: 16px;
    line-height: 1.5;
}

.hwm-worker-form .wpcf7-form input[type="text"],
.hwm-worker-form .wpcf7-form input[type="email"],
.hwm-worker-form .wpcf7-form input[type="tel"],
.hwm-worker-form .wpcf7-form input[type="number"],
.hwm-worker-form .wpcf7-form textarea,
.hwm-worker-form .wpcf7-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color .2s;
    margin-bottom: 16px;
}

.hwm-worker-form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
}

.hwm-worker-form .wpcf7-form input[type="submit"]:hover {
    background: var(--gold-400);
}
