/* ============================================================
   MHLABOMUSHA CUSTOM REDESIGN STYLESHEET
   Production-ready overrides for grdeen template
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --mh-primary: #0B6E35;
    --mh-primary-dark: #064A24;
    --mh-primary-light: #E8F5EC;
    --mh-secondary: #1B4D89;
    --mh-secondary-dark: #123662;
    --mh-secondary-light: #E8EFF8;
    --mh-accent: #D4A017;
    --mh-accent-light: #FDF6E3;
    --mh-dark: #111827;
    --mh-gray-900: #1F2937;
    --mh-gray-700: #374151;
    --mh-gray-600: #4B5563;
    --mh-gray-500: #6B7280;
    --mh-gray-400: #9CA3AF;
    --mh-gray-200: #E5E7EB;
    --mh-gray-100: #F3F4F6;
    --mh-gray-50: #F9FAFB;
    --mh-white: #FFFFFF;
    --mh-danger: #DC2626;
    --mh-radius-sm: 6px;
    --mh-radius: 10px;
    --mh-radius-lg: 16px;
    --mh-radius-xl: 24px;
    --mh-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --mh-shadow: 0 4px 16px rgba(0,0,0,0.08);
    --mh-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --mh-shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
    --mh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --mh-font-heading: 'DM Sans', sans-serif;
    --mh-font-body: 'Inter', sans-serif;
}

/* ── Global Typography ──────────────────────────────────────── */
body {
    font-family: var(--mh-font-body);
    color: var(--mh-gray-700);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.sec-title__title,
.page-header__title {
    font-family: var(--mh-font-heading);
    color: var(--mh-dark);
    font-weight: 700;
    line-height: 1.2;
}

p { margin-bottom: 16px; }

a {
    color: var(--mh-primary);
    text-decoration: none;
    transition: var(--mh-transition);
}
a:hover { color: var(--mh-primary-dark); }

/* ── Buttons ────────────────────────────────────────────────── */
.mh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--mh-font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--mh-transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    line-height: 1.4;
}
.mh-btn i { font-size: 14px; transition: transform 0.3s ease; }
.mh-btn:hover i { transform: translateX(4px); }

.mh-btn--primary {
    background: var(--mh-primary);
    color: #fff !important;
    border-color: var(--mh-primary);
}
.mh-btn--primary:hover {
    background: var(--mh-primary-dark);
    border-color: var(--mh-primary-dark);
    box-shadow: 0 8px 24px rgba(11,110,53,0.3);
    color: #fff !important;
}

.mh-btn--outline {
    background: transparent;
    color: var(--mh-primary) !important;
    border-color: var(--mh-primary);
}
.mh-btn--outline:hover {
    background: var(--mh-primary);
    color: #fff !important;
}

.mh-btn--white {
    background: #fff;
    color: var(--mh-primary) !important;
    border-color: #fff;
}
.mh-btn--white:hover {
    background: var(--mh-primary);
    color: #fff !important;
    border-color: var(--mh-primary);
}

.mh-btn--ghost-white {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.mh-btn--ghost-white:hover {
    background: #fff;
    color: var(--mh-primary) !important;
    border-color: #fff;
}

/* ── Section Labels & Titles ────────────────────────────────── */
.mh-section-label {
    display: inline-block;
    font-family: var(--mh-font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.mh-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--mh-accent);
    border-radius: 50%;
}

.mh-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--mh-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}
.mh-section-title span { color: var(--mh-primary); }

.mh-section-subtitle {
    font-size: 17px;
    color: var(--mh-gray-600);
    line-height: 1.7;
    max-width: 600px;
}
.mh-section-subtitle--centered { margin-left: auto; margin-right: auto; }

.mh-text-accent { color: var(--mh-primary) !important; }

/* ── Hero Section ───────────────────────────────────────────── */
.mh-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.mh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.mh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,74,36,0.88) 0%, rgba(17,24,39,0.75) 100%);
    z-index: 1;
}
.mh-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 80px;
    width: 100%;
}

.mh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.mh-hero__badge i {
    color: var(--mh-accent);
    font-size: 16px;
}

.mh-hero__title {
    font-size: clamp(36px, 5.5vw, 66px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.mh-hero__title span {
    color: var(--mh-accent);
    position: relative;
}

.mh-hero__desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

.mh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.mh-hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.mh-hero__stat {
    text-align: center;
}
.mh-hero__stat-number {
    font-family: var(--mh-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.mh-hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ── Features Strip ─────────────────────────────────────────── */
.mh-features {
    background: var(--mh-white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}
.mh-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    box-shadow: var(--mh-shadow-lg);
    overflow: hidden;
}
.mh-feature-item {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--mh-gray-200);
    transition: var(--mh-transition);
}
.mh-feature-item:last-child { border-right: none; }
.mh-feature-item:hover {
    background: var(--mh-primary);
    color: #fff;
}
.mh-feature-item:hover .mh-feature-item__icon { background: rgba(255,255,255,0.2); color: #fff; }
.mh-feature-item:hover .mh-feature-item__title { color: #fff; }
.mh-feature-item:hover .mh-feature-item__text { color: rgba(255,255,255,0.8); }

.mh-feature-item__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--mh-primary-light);
    color: var(--mh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: var(--mh-transition);
}
.mh-feature-item__title {
    font-family: var(--mh-font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    transition: var(--mh-transition);
}
.mh-feature-item__text {
    font-size: 14px;
    color: var(--mh-gray-500);
    margin: 0;
    transition: var(--mh-transition);
}

/* ── About Section ──────────────────────────────────────────── */
.mh-about {
    padding: 100px 0;
    background: var(--mh-gray-50);
}
.mh-about__image-wrap {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}
.mh-about__image-main img {
    border-radius: var(--mh-radius-lg);
    width: 100%;
    object-fit: cover;
    display: block;
}
.mh-about__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--mh-primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--mh-radius);
    text-align: center;
    box-shadow: var(--mh-shadow-lg);
}
.mh-about__image-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.mh-about__image-badge span {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.3;
}

.mh-about__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.mh-about__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--mh-gray-700);
}
.mh-about__checklist i {
    color: var(--mh-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.mh-about__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.mh-about__stat {
    text-align: center;
    padding: 16px 20px;
    background: var(--mh-white);
    border-radius: var(--mh-radius);
    box-shadow: var(--mh-shadow-sm);
    min-width: 120px;
}
.mh-about__stat-num {
    font-family: var(--mh-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--mh-primary);
    line-height: 1;
}
.mh-about__stat-text {
    font-size: 13px;
    color: var(--mh-gray-500);
    margin-top: 4px;
}

/* ── Service Cards ──────────────────────────────────────────── */
.mh-services {
    padding: 100px 0;
    background: var(--mh-white);
}

.mh-service-card {
    display: flex;
    flex-direction: column;
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    overflow: hidden;
    box-shadow: var(--mh-shadow);
    transition: var(--mh-transition);
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
    border: 1px solid var(--mh-gray-200);
}
.mh-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mh-shadow-lg);
    border-color: var(--mh-primary);
}
.mh-service-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.mh-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mh-service-card:hover .mh-service-card__image img {
    transform: scale(1.05);
}

.mh-service-card__icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mh-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    bottom: -24px;
    right: 20px;
    z-index: 2;
    box-shadow: var(--mh-shadow);
}

.mh-service-card__body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mh-service-card__title {
    font-family: var(--mh-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mh-dark);
    margin-bottom: 10px;
}
.mh-service-card__desc {
    font-size: 15px;
    color: var(--mh-gray-600);
    line-height: 1.6;
    flex: 1;
}
.mh-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mh-primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: var(--mh-transition);
}
.mh-service-card:hover .mh-service-card__link { gap: 10px; }

/* Featured card variant */
.mh-service-card--featured {
    background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-primary-dark) 100%);
    border-color: var(--mh-primary);
    min-height: 320px;
    justify-content: center;
}
.mh-service-card--featured .mh-service-card__icon-badge {
    position: relative;
    bottom: auto;
    right: auto;
    background: rgba(255,255,255,0.2);
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 24px;
}
.mh-service-card--featured .mh-service-card__title { color: #fff; font-size: 26px; }
.mh-service-card--featured .mh-service-card__desc { color: rgba(255,255,255,0.85); }
.mh-service-card--featured .mh-service-card__link { color: var(--mh-accent); }
.mh-service-card--featured:hover {
    transform: translateY(-6px);
    border-color: var(--mh-accent);
}

/* ── Process Steps ──────────────────────────────────────────── */
.mh-process {
    padding: 100px 0;
    background: var(--mh-gray-50);
}
.mh-process-step {
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--mh-shadow-sm);
    transition: var(--mh-transition);
    height: 100%;
    border: 1px solid var(--mh-gray-200);
    position: relative;
}
.mh-process-step:hover {
    box-shadow: var(--mh-shadow);
    border-color: var(--mh-primary);
    transform: translateY(-4px);
}
.mh-process-step__number {
    font-family: var(--mh-font-heading);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mh-primary-light), var(--mh-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.mh-process-step__title {
    font-family: var(--mh-font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.mh-process-step__text {
    font-size: 14px;
    color: var(--mh-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── Benefits ───────────────────────────────────────────────── */
/* ── Why Choose Us / Benefits ───────────────────────────────── */
.mh-benefits {
    padding: 100px 0;
    background: var(--mh-gray-50);
    overflow: hidden;
}
.mh-benefits__subtitle {
    color: var(--mh-gray-500);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.mh-benefits__body {
    align-items: stretch !important;
}
.mh-benefits__body > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* 2×2 card grid */
.mh-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
    margin-bottom: 28px;
}
@media (max-width: 575px) {
    .mh-benefits__grid { grid-template-columns: 1fr; }
}
.mh-benefit-card {
    background: #fff;
    border-radius: var(--mh-radius-lg);
    padding: 24px 20px;
    border: 1px solid var(--mh-gray-200);
    transition: var(--mh-transition);
}
.mh-benefit-card:hover {
    border-color: var(--mh-primary);
    box-shadow: 0 8px 30px rgba(11,110,53,0.10);
    transform: translateY(-3px);
}
.mh-benefit-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--mh-primary-light);
    color: var(--mh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: var(--mh-transition);
}
.mh-benefit-card:hover .mh-benefit-card__icon {
    background: var(--mh-primary);
    color: #fff;
}
.mh-benefit-card__title {
    font-family: var(--mh-font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--mh-dark);
}
.mh-benefit-card__text {
    font-size: 13.5px;
    color: var(--mh-gray-500);
    margin: 0;
    line-height: 1.6;
}
.mh-benefits__action {
    margin-top: auto;
    padding-top: 8px;
}

/* Image composition — fills full height of left column */
.mh-benefits__images {
    position: relative;
    flex: 1;
    padding-left: 40px;
    min-height: 420px;
}
.mh-benefits__img-main {
    position: absolute;
    top: 0;
    left: 40px;
    right: 0;
    bottom: 0;
    width: calc(100% - 40px);
    height: 100%;
    object-fit: cover;
    border-radius: var(--mh-radius-lg);
}
.mh-benefits__img-small {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--mh-radius-lg);
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
    z-index: 2;
}
.mh-benefits__accent-bar {
    position: absolute;
    left: 15px;
    top: 0;
    width: 6px;
    height: 120px;
    background: var(--mh-primary);
    border-radius: 3px;
    animation: mh-accentPulse 2s ease-in-out infinite alternate;
}
@keyframes mh-accentPulse {
    from { height: 120px; opacity: 1; }
    to   { height: 160px; opacity: 0.7; }
}
.mh-benefits__experience {
    position: absolute;
    right: 16px;
    bottom: 40px;
    background: var(--mh-primary);
    color: #fff;
    border-radius: var(--mh-radius-lg);
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(11,110,53,0.25);
    z-index: 2;
}
.mh-benefits__experience-number {
    display: block;
    font-family: var(--mh-font-heading);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}
.mh-benefits__experience-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}
@media (max-width: 991px) {
    .mh-benefits__images {
        padding-left: 20px;
        min-height: 380px;
        margin-top: 40px;
    }
    .mh-benefits__img-main {
        left: 20px;
        width: calc(100% - 20px);
    }
    .mh-benefits__img-small {
        width: 140px;
        height: 140px;
    }
}

/* ── Stats / Fun Facts override ─────────────────────────────── */
.mh-stat-card {
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--mh-shadow);
    transition: var(--mh-transition);
}
.mh-stat-card:hover { transform: translateY(-4px); box-shadow: var(--mh-shadow-lg); }
.mh-stat-card__number {
    font-family: var(--mh-font-heading);
    font-size: 44px;
    font-weight: 900;
    color: var(--mh-primary);
    line-height: 1;
}
.mh-stat-card__label {
    font-size: 15px;
    color: var(--mh-gray-500);
    margin-top: 8px;
}

/* ── Testimonials override ──────────────────────────────────── */
.mh-testimonials {
    padding: 100px 0;
    background: var(--mh-gray-50);
}

/* ── Projects section override ──────────────────────────────── */
.project-one { padding: 100px 0; }

/* ── Company Facts + Skip Hire ──────────────────────────────── */
.mh-company-facts {
    padding: 100px 0;
    background: var(--mh-white);
}
.mh-company-facts__row {
    align-items: stretch;
}
.mh-company-facts__row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.mh-company-facts__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 40px;
}
.mh-company-facts__text {
    color: var(--mh-gray-500);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.mh-company-facts__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0 32px;
}
.mh-fact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--mh-gray-50);
    border: 1px solid var(--mh-gray-200);
    border-radius: var(--mh-radius);
    padding: 14px 16px;
    transition: var(--mh-transition);
}
.mh-fact-badge:hover {
    border-color: var(--mh-primary);
    background: var(--mh-primary-light);
}
.mh-fact-badge > i {
    font-size: 22px;
    color: var(--mh-primary);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.mh-fact-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.mh-fact-badge strong {
    font-family: var(--mh-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--mh-dark);
}
.mh-fact-badge span {
    font-size: 12px;
    color: var(--mh-gray-500);
}

/* Skip card */
.mh-skip-card {
    background: var(--mh-white);
    border-radius: var(--mh-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.10);
    border: 1px solid var(--mh-gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mh-skip-card__icon {
    font-size: 32px;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 12px;
}
.mh-skip-card__header {
    background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-secondary) 100%);
    padding: 32px 28px;
    text-align: center;
}
.mh-skip-card__header h3 {
    color: #fff;
    font-family: var(--mh-font-heading);
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 6px;
}
.mh-skip-card__header p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}
.mh-skip-card__body {
    padding: 8px 28px;
    flex: 1;
}
.mh-skip-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--mh-gray-100);
    gap: 12px;
}
.mh-skip-price:last-child { border-bottom: none; }
.mh-skip-price__name {
    font-family: var(--mh-font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--mh-dark);
    margin-bottom: 2px;
}
.mh-skip-price__detail {
    font-size: 13px;
    color: var(--mh-gray-400);
}
.mh-skip-price__right {
    text-align: right;
    flex-shrink: 0;
}
.mh-skip-price__amount {
    font-family: var(--mh-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--mh-primary);
    line-height: 1;
}
.mh-skip-price__vat {
    font-size: 11px;
    color: var(--mh-gray-400);
    display: block;
    margin-top: 2px;
}
.mh-skip-card__footer {
    padding: 24px 28px;
    background: var(--mh-gray-50);
    border-top: 1px solid var(--mh-gray-200);
    text-align: center;
}
.mh-skip-card__cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 14px;
}
.mh-skip-card__note {
    font-size: 13px;
    color: var(--mh-gray-500);
    margin: 0;
}
.mh-skip-card__note i {
    color: var(--mh-primary);
    margin-right: 6px;
}
@media (max-width: 991px) {
    .mh-company-facts__content { padding-right: 0; margin-bottom: 40px; }
}
@media (max-width: 575px) {
    .mh-company-facts__badges { grid-template-columns: 1fr; }
}

/* ── Clients ────────────────────────────────────────────────── */
.mh-clients {
    padding: 80px 0;
    background: var(--mh-white);
}
.mh-client-logo {
    background: var(--mh-white);
    border-radius: var(--mh-radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid var(--mh-gray-200);
    transition: var(--mh-transition);
}
.mh-client-logo:hover {
    border-color: var(--mh-primary);
    box-shadow: var(--mh-shadow);
}
.mh-client-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--mh-transition);
}
.mh-client-logo:hover img {
    filter: none;
    opacity: 0.8;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.mh-cta {
    padding: 0;
}
.mh-cta__content {
    background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-secondary) 100%);
    padding: 80px 0;
    text-align: center;
}
.mh-cta h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}
.mh-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ── Booking / CTA form section ─────────────────────────────── */
.free-booking-one__shadow { display: none !important; }

.mh-booking-cta {
    background: var(--mh-dark);
    padding: 0;
    margin: 0;
}

.mh-booking-cta .bootstrap-select,
.mh-booking-cta .dropdown-toggle {
    display: none !important;
}

.mh-booking-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 0;
}

/* Left side: image thumbnail + text */
.mh-booking-cta__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.mh-booking-cta__img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.12);
}

.mh-booking-cta__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-booking-cta__text {
    max-width: 320px;
}

.mh-booking-cta__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.mh-booking-cta__sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.4;
}

/* Right side: inline form */
.mh-booking-cta__form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mh-booking-cta__form input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13px;
    width: 140px;
    transition: border-color 0.2s, background 0.2s;
}

.mh-booking-cta__form input::placeholder {
    color: rgba(255,255,255,0.38);
}

.mh-booking-cta__form input:focus {
    outline: none;
    border-color: var(--mh-primary);
    background: rgba(255,255,255,0.11);
}

.mh-booking-cta__submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mh-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.mh-booking-cta__submit:hover {
    background: #095a2b;
}

.mh-booking-cta__submit i {
    font-size: 11px;
    transition: transform 0.2s;
}

.mh-booking-cta__submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .mh-booking-cta__form input {
        width: 120px;
    }
    .mh-booking-cta__text {
        max-width: 240px;
    }
}

@media (max-width: 991px) {
    .mh-booking-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0;
    }
    .mh-booking-cta__form {
        flex-wrap: wrap;
        width: 100%;
    }
    .mh-booking-cta__form input {
        flex: 1;
        min-width: 0;
    }
}

/* ── Footer overrides ───────────────────────────────────────── */
.main-footer__overlay {
    background: rgba(17,24,39,0.92) !important;
}
.main-footer__top {
    padding-top: 60px !important;
    padding-bottom: 10px !important;
}
.footer-widget {
    margin-bottom: 20px;
}
.footer-widget__logo {
    margin-bottom: 12px;
}
.footer-widget__experience-text {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-widget__title {
    margin-bottom: 14px !important;
    font-size: 18px !important;
}
.footer-widget__gallerywrap__img img {
    border-radius: 3px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-widget__gallerywrap {
    gap: 6px;
}
.footer-widget__gallerywrap__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.footer-widget__post-col {
    padding-bottom: 14px;
}
.footer-widget__post-col + .footer-widget__post-col {
    padding-top: 14px;
}
.footer-widget__newsletterwrap {
    margin-top: 10px;
}

/* ── FAQ Dropdown (service pages) ───────────────────────────── */
.mh-faq-dropdown__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mh-faq-dropdown__toggle i {
    font-size: 16px;
    transition: transform 0.3s;
}
.mh-faq-dropdown__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mh-faq-dropdown__body__inner {
    padding-top: 20px;
}
.mh-faq-dropdown.open .mh-faq-dropdown__toggle i {
    transform: rotate(180deg);
}
.mh-faq-dropdown.open .mh-faq-dropdown__toggle {
    border-bottom-color: transparent;
}

/* ── Service Detail Page Enhancements ────────────────────────── */
.service-details__box {
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}
.service-details__box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--mh-primary);
}
.service-details__box__icon {
    display: none;
}
.service-details__box-wrapper {
    margin-bottom: 30px;
}
.service-details__benefit img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}
.service-details__benefit__list li {
    margin-bottom: 8px;
}
.service-details__text {
    line-height: 1.8;
    margin-bottom: 16px;
}
.service-details__heading {
    margin-top: 24px;
    margin-bottom: 16px;
}

/* ── Template Overrides ─────────────────────────────────────── */
/* Fix broken SVG errors with xmlns="#" or xmlns="#!" */
svg[xmlns="#"], svg[xmlns="#!"] {
    display: none;
}

/* Override template primary color */
.grdeen-btn,
.grdeen-btn:hover {
    background-color: var(--mh-primary) !important;
    border-color: var(--mh-primary) !important;
}

/* Fix the "Get A Quote" button in header */
.main-header__btn.mh-btn--primary {
    padding: 10px 24px;
    font-size: 14px;
}

/* Section title tagline override */
.sec-title__tagline {
    color: var(--mh-primary) !important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .mh-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mh-feature-item {
        border-bottom: 1px solid var(--mh-gray-200);
    }
    .mh-feature-item:nth-child(2) { border-right: none; }
    .mh-hero__title { font-size: clamp(32px, 6vw, 48px); }
    .mh-hero__stats { gap: 24px; }
    .mh-about__image-badge {
        bottom: -10px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .mh-features__grid {
        grid-template-columns: 1fr;
    }
    .mh-feature-item {
        border-right: none;
        border-bottom: 1px solid var(--mh-gray-200);
    }
    .mh-feature-item:last-child { border-bottom: none; }
    .mh-hero {
        min-height: 80vh;
    }
    .mh-hero__content {
        padding: 60px 0 60px;
    }
    .mh-hero__stats {
        gap: 20px;
    }
    .mh-hero__stat-number {
        font-size: 28px;
    }
    .mh-about {
        padding: 60px 0;
    }
    .mh-services {
        padding: 60px 0;
    }
    .mh-process {
        padding: 60px 0;
    }
    .mh-benefits {
        padding: 60px 0;
    }
    .mh-benefits__grid {
        gap: 16px;
    }
    .mh-clients {
        padding: 50px 0;
    }
    .mh-cta__content {
        padding: 50px 0;
    }
    .mh-section-title {
        font-size: 28px;
    }
    .mh-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ── Animation / Polish ─────────────────────────────────────── */
@keyframes mh-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--mh-primary);
    outline-offset: 2px;
}

/* Selection highlight */
::selection {
    background: var(--mh-primary);
    color: #fff;
}

/* Image max-width safety */
img { max-width: 100%; height: auto; }

/* ── Page Header override for inner pages ───────────────────── */
.page-header {
    background-color: var(--mh-dark);
}
.page-header__bg {
    mix-blend-mode: normal !important;
    opacity: 0.45;
}
.page-header__overlay {
    background: linear-gradient(180deg, rgba(17,24,39,0.5) 0%, rgba(17,24,39,0.85) 100%) !important;
}
.page-header__title {
    color: #ffffff !important;
}

/* ════════════════════════════════════════════════════════════
   HEADER — Topbar & Main Navigation
   ════════════════════════════════════════════════════════════ */

/* ── New Topbar ─────────────────────────────────────────────── */
.mh-topbar {
    background: var(--mh-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}
.mh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    max-width: 1814px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

/* Contact info cluster */
.mh-topbar__contact {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.mh-topbar__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 0 18px 0 0;
    border-right: 1px solid rgba(255,255,255,0.12);
    margin-right: 18px;
    white-space: nowrap;
}
.mh-topbar__contact-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.mh-topbar__contact-item i {
    color: var(--mh-primary);
    font-size: 12px;
    flex-shrink: 0;
}
.mh-topbar__contact-item:hover {
    color: #fff;
    text-decoration: none;
}
.mh-topbar__hours {
    color: rgba(255,255,255,0.5);
    cursor: default;
}

/* Social icons */
.mh-topbar__social {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.mh-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06);
    font-size: 12px;
    transition: var(--mh-transition);
    text-decoration: none !important;
}
.mh-topbar__social a:hover {
    background: var(--mh-primary);
    color: #fff;
}

/* Hide original topbar if it still exists */
.topbar-one { display: none; }

/* ── Main Header ─────────────────────────────────────────────── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 991;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0 !important;
    margin: 0 !important;
}
/* Pull hero flush against header — zero any gap */
.mh-hero {
    margin-top: 0 !important;
}
.main-header .container-fluid {
    max-width: 1814px;
    padding: 0 24px;
    height: 72px;
}
/* Ensure cloned sticky header never creates space in flow */
.sticky-header--cloned:not(.active) {
    display: none !important;
}
.sticky-header--cloned.active {
    display: block !important;
    position: fixed !important;
}

/* Override template's green inner bar */
.main-header__inner {
    display: flex !important;
    align-items: center !important;
    background-color: #fff !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0;
    max-height: 72px;
    height: 72px;
    gap: 0;
    overflow: visible;
}

/* Logo block — remove template's angled-box styling */
.main-header__logo,
.main-header--one_only .main-header__logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: 72px !important;
    background-color: transparent !important;
    padding: 0 30px 0 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-right: 1px solid var(--mh-gray-200);
    flex-shrink: 0;
}
.main-header__logo::after {
    display: none !important;
}
.main-header__logo img,
.main-header--one_only .main-header__logo img {
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
}

/* Nav wrapper — push it to center with auto margin */
.main-header__nav {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

/* Nav list items */
.main-menu__list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Mobile nav list overrides (undo desktop flex) ───────── */
.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    gap: 0 !important;
}
.mobile-nav__content .main-menu__list > li {
    padding: 0 !important;
    margin: 0 !important;
}
.mobile-nav__content .main-menu__list > li > a {
    display: flex !important;
    justify-content: space-between;
    height: 46px !important;
    padding: 0 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: normal !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__content .main-menu__list > li > a::after {
    display: none !important;
}
.mobile-nav__content .main-menu__list > li > a:hover {
    color: var(--mh-primary, #1a9120) !important;
}
/* Sub-menu inside mobile nav */
.mobile-nav__content .main-menu__list .dropdown > ul {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: unset !important;
    padding: 0 !important;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.mobile-nav__content .main-menu__list .dropdown > ul li a {
    color: #ccc !important;
    background: transparent !important;
    padding: 10px 0 10px 20px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav__content .main-menu__list .dropdown > ul li a:hover {
    color: var(--mh-primary, #1a9120) !important;
    background: transparent !important;
    padding-left: 26px !important;
}

/* Kill ALL template per-li vertical padding that bloats header height */
.main-menu__list > li,
.main-menu .main-menu__list > li,
.main-header--only-one .main-menu .main-menu__list > li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.main-menu__list > li > a {
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 16px;
    font-family: var(--mh-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--mh-gray-700) !important;
    text-decoration: none !important;
    position: relative;
    white-space: nowrap;
    transition: color 0.25s ease;
    letter-spacing: 0.1px;
}
.main-menu__list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--mh-primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}
.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
    color: var(--mh-primary) !important;
}
.main-menu__list > li > a:hover::after,
.main-menu__list > li.current > a::after {
    transform: scaleX(1);
}

/* Dropdown menu */
.main-menu__list .dropdown > ul {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #fff;
    border-radius: var(--mh-radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
    min-width: 230px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
    list-style: none;
    border-top: 3px solid var(--mh-primary);
}
.main-menu__list .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-menu__list .dropdown > ul li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--mh-font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--mh-gray-700);
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.main-menu__list .dropdown > ul li a:hover {
    color: var(--mh-primary);
    background: var(--mh-primary-light);
    padding-left: 26px;
}

/* Right section — CTA button */
.main-header__right,
.main-header--only-one .main-header__right {
    display: flex !important;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 0 0 24px !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
}
/* Remove template's decorative before/after pseudo-elements */
.main-header--only-one .main-header__right::before,
.main-header--only-one .main-header__right::after {
    display: none !important;
}
.main-header__btn.mh-btn--primary {
    padding: 11px 24px;
    font-size: 14px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Hamburger toggler */
.mobile-nav__btn span {
    background: var(--mh-dark) !important;
}

/* Sticky state — keep white bg */
.sticky-header.fixed-nav .main-header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

/* ── Header Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
    .mh-topbar__hours { display: none; }
}
@media (max-width: 991px) {
    .mh-topbar__contact-item:first-child { display: none; }
    .main-header__nav { display: none !important; }
    .main-header__right .mh-btn { display: none; }
    .main-header__inner { min-height: 66px; }
    .main-header__logo {
        padding: 12px 0 !important;
        border-right: none !important;
    }
    .main-header__logo img { height: 44px !important; }

    /* Hide topbar on mobile for cleaner layout */
    .mh-topbar { display: none; }
}
@media (max-width: 576px) {
    .mh-topbar__contact { display: none; }
    .mh-topbar__inner { justify-content: center; }
}

/* ── Mobile Nav Fixes ────────────────────────────────────────── */
.mobile-nav__wrapper {
    z-index: 99999 !important;
}
.mobile-nav__content {
    z-index: 100000 !important;
    background-color: rgba(23, 32, 0, 0.97) !important;
}
.mobile-nav__overlay {
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    opacity: 1 !important;
}

/* Lock body & kill all competing stacking contexts when nav is open */
body.locked {
    overflow: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: auto !important;
}
body.locked .page-wrapper {
    overflow: hidden !important;
    pointer-events: none;
    touch-action: none !important;
}
body.locked .main-header {
    z-index: 1 !important;
}
body.locked .sticky-header--cloned {
    display: none !important;
}

/* Ensure hamburger icon is always visible */
.mobile-nav__btn {
    z-index: 992;
    position: relative;
}
/* Fix: template uses white bars — invisible on our white header */
.mobile-nav__btn span {
    background-color: var(--mh-dark, #1b3a2d) !important;
}
/* Hide cloned sticky header behind mobile nav when open */
.sticky-header--cloned {
    z-index: 998 !important;
}

/* ── Hero Slider ─────────────────────────────────────────── */
.mh-hero--slider {
    position: relative;
    min-height: 92vh;
}
.mh-hero--slider .owl-stage-outer,
.mh-hero--slider .owl-stage,
.mh-hero--slider .owl-item,
.mh-hero--slider .item {
    height: 100%;
}
.mh-hero__slide {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.mh-hero__slide .mh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,74,36,0.88) 0%, rgba(17,24,39,0.75) 100%);
    z-index: 1;
}
.mh-hero__slide .mh-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
}
.mh-hero--slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 48px;
    height: 48px;
    font-size: 20px !important;
    z-index: 10;
    transition: background 0.3s;
}
.mh-hero--slider .owl-nav button:hover {
    background: rgba(255,255,255,0.35) !important;
}
.mh-hero--slider .owl-nav .owl-prev { left: 20px; }
.mh-hero--slider .owl-nav .owl-next { right: 20px; }
.mh-hero--slider .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.mh-hero--slider .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
}
.mh-hero--slider .owl-dots .owl-dot.active span {
    background: #fff !important;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE & RESPONSIVE ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

/* Global overflow prevention */
html, body {
    overflow-x: hidden;
}

/* Make all iframes responsive */
iframe {
    max-width: 100%;
    width: 100%;
}

/* ── Tablet (≤991px) ──────────────────────────────────────── */
@media (max-width: 991px) {
    /* Hero slider adjustments */
    .mh-hero__slide {
        min-height: 80vh;
    }
    .mh-hero--slider {
        min-height: 80vh;
    }
    .mh-hero__slide .mh-hero__content {
        padding: 60px 0;
    }

    /* Company facts section */
    .mh-company-facts {
        padding: 60px 0;
    }
    .mh-skip-card {
        margin-top: 30px;
    }

    /* Project cards equal height */
    .project-one__item__image {
        height: 220px;
        overflow: hidden;
    }
    .project-one__item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Testimonials */
    .mh-testimonials {
        padding: 60px 0;
    }

    /* Projects */
    .project-one {
        padding: 60px 0;
    }
}

/* ── Mobile (≤767px) ──────────────────────────────────────── */
@media (max-width: 767px) {
    /* Hero slider */
    .mh-hero__slide {
        min-height: 70vh;
    }
    .mh-hero--slider {
        min-height: 70vh;
    }
    .mh-hero--slider .owl-nav {
        display: none;
    }
    .mh-hero__slide .mh-hero__content {
        padding: 50px 0 40px;
    }
    .mh-hero__title {
        font-size: clamp(24px, 6vw, 36px) !important;
    }
    .mh-hero__desc {
        font-size: 14px;
    }
    .mh-hero__badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .mh-hero__actions {
        flex-direction: column;
        gap: 10px;
    }
    .mh-hero__actions .mh-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .mh-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    .mh-hero__stat {
        text-align: center;
    }
    .mh-hero__stat-number {
        font-size: 24px;
    }
    .mh-hero__stat-label {
        font-size: 11px;
    }

    /* Section padding reduction */
    .mh-services,
    .mh-process,
    .mh-benefits,
    .mh-company-facts,
    .mh-testimonials,
    .project-one {
        padding: 50px 0;
    }

    /* Section titles */
    .mh-section-title {
        font-size: 24px;
    }

    /* Service cards */
    .mh-service-card--featured {
        min-height: 240px;
    }
    .mh-service-card--featured .mh-service-card__title {
        font-size: 20px;
    }
    .mh-service-card--featured .mh-service-card__desc {
        font-size: 14px;
    }

    /* Skip card pricing */
    .mh-skip-card__body {
        padding: 8px 16px;
    }
    .mh-skip-price__amount {
        font-size: 20px;
    }

    /* About section image layout */
    .mh-about__image-badge {
        bottom: auto;
        right: auto;
        position: relative;
        display: inline-block;
        margin-top: 16px;
    }

    /* Benefits image composition */
    .mh-benefits__images {
        min-height: 280px;
        padding-left: 16px;
    }
    .mh-benefits__img-main {
        left: 16px;
        width: calc(100% - 16px);
    }
    .mh-benefits__img-small {
        width: 110px;
        height: 110px;
    }
    .mh-benefits__experience {
        padding: 12px 16px;
    }
    .mh-benefits__experience-number {
        font-size: 26px;
    }

    /* CTA */
    .mh-cta__content {
        padding: 40px 0;
    }
    .mh-cta p {
        font-size: 15px;
    }

    /* Footer */
    .footer-widget__col {
        margin-bottom: 30px;
    }

    /* Page header (inner pages) */
    .page-header__title {
        font-size: 28px !important;
    }

    /* Booking CTA form */
    .mh-booking-cta__form {
        flex-direction: column;
    }
    .mh-booking-cta__form input {
        width: 100%;
    }
    .mh-booking-cta__submit {
        width: 100%;
        justify-content: center;
    }
}

/* ── Small phones (≤480px) ────────────────────────────────── */
@media (max-width: 480px) {
    .mh-hero__slide {
        min-height: 65vh;
    }
    .mh-hero--slider {
        min-height: 65vh;
    }
    .mh-hero__title {
        font-size: 22px !important;
    }
    .mh-hero__stats {
        gap: 12px;
    }
    .mh-hero__stat-number {
        font-size: 20px;
    }
    .mh-hero__stat-label {
        font-size: 10px;
    }

    .mh-section-title {
        font-size: 22px;
    }
    .mh-section-label {
        font-size: 12px;
    }

    /* Feature strip */
    .mh-feature-item__title {
        font-size: 13px;
    }
    .mh-feature-item__text {
        font-size: 11px;
    }

    /* Buttons smaller */
    .mh-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Skip card compact */
    .mh-skip-card__header {
        padding: 20px 16px;
    }
    .mh-skip-card__header h3 {
        font-size: 20px;
    }
    .mh-skip-price__name {
        font-size: 14px;
    }
    .mh-skip-price__amount {
        font-size: 18px;
    }

    /* Fact badges single column */
    .mh-company-facts__badges {
        grid-template-columns: 1fr;
    }

    /* Process steps */
    .mh-process-step {
        padding: 24px 16px;
    }
    .mh-process-step__number {
        font-size: 36px;
    }

    /* Pricing table on skip hire page */
    .pricing-row .row [class*="col-"] {
        margin-bottom: 8px;
    }

    /* Testimonial cards */
    .testimonials-card__inner {
        padding: 16px;
    }
}

/* ── Touch-friendly tap targets ───────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .mh-btn,
    .mh-service-card__link,
    .grdeen-btn,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }
    /* Disable hover transforms on touch */
    .mh-service-card:hover,
    .mh-benefit-card:hover,
    .mh-stat-card:hover,
    .mh-process-step:hover {
        transform: none;
    }
}
