﻿@font-face {
    font-family: 'thmany';
    src: url('../Fonts/thmanyahsans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'thmany';
    src: url('../Fonts/thmanyahsans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html[dir="ltr"] body {
    font-family: 'thmany', system-ui, sans-serif !important;
}

html[dir="rtl"] body {
    font-family: 'thmany', system-ui, sans-serif !important;
}

:root {
    --mahill-red: #E11837;
    --mahill-blue: #00306F;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border: rgba(17, 24, 39, 0.12);
    --bg: #ffffff;
}

.mh-navbar {
    background: var(--bg);
    padding: 14px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

    .mh-navbar.mh-navbar-scrolled {
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

.mh-brand {
    display: flex;
    align-items: center;
}

.mh-logo {
    height: 42px;
    width: auto;
    display: block;
}

/* NAV LINKS */
.mh-menu {
    gap: 28px;
}

    .mh-menu .mh-link {
        position: relative;
        font-weight: 700;
        color: var(--mahill-blue);
        padding: 10px 14px;
        border-radius: 10px;
        transition: color 160ms ease, background 160ms ease;
    }

        /* Hover state */
        .mh-menu .mh-link:hover {
            color: var(--mahill-red);
            background: rgba(225, 52, 46, 0.08);
        }

        /* Underline */
        .mh-menu .mh-link::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 6px;
            height: 2px;
            background: var(--mahill-red);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 180ms ease;
        }

        .mh-menu .mh-link:hover::after {
            transform: scaleX(1);
        }

        /* Active page */
        .mh-menu .mh-link.active {
            color: var(--mahill-red);
        }

            .mh-menu .mh-link.active::after {
                transform: scaleX(1);
            }

/* LANGUAGE BUTTON */
.mh-lang-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mahill-blue);
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

    .mh-lang-btn i {
        font-size: 20px;
        line-height: 1;
        transition: transform 150ms ease;
    }

    .mh-lang-btn:hover {
        background: rgba(50, 50, 143, 0.08);
        border-color: rgba(50, 50, 143, 0.25);
        color: var(--mahill-red);
    }

        .mh-lang-btn:hover i {
            transform: rotate(10deg);
        }

.mh-main {
    min-height: 60vh;
}


.mh-footer {
    background: #0b0f2a;
    color: rgba(255, 255, 255, 0.86);
}

.mh-footer-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
/* Footer social icons – dark footer version */
.mh-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mh-social {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 150ms ease;
}

    /* Brand colors on hover */
    .mh-social.facebook:hover {
        border-color: #1877f2;
        color: #1877f2;
    }

    .mh-social.instagram:hover {
        border-color: #e1306c;
        color: #e1306c;
    }

    .mh-social.x:hover {
        border-color: #ffffff;
        color: #ffffff;
    }

    .mh-social.youtube:hover {
        border-color: #ff0000;
        color: #ff0000;
    }

    .mh-social.linkedin:hover {
        border-color: #0a66c2;
        color: #0a66c2;
    }

    .mh-social.tiktok:hover {
        border-color: #ffffff;
        color: #ffffff;
    }

    /* Subtle lift */
    .mh-social:hover {
        transform: translateY(-2px);
    }


.mh-footer-title {
    font-weight: 800;
    color: #ffffff;
}

.mh-footer-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

    .mh-footer-text a {
        color: #ffffff;
        text-decoration: none;
    }

        .mh-footer-text a:hover,
        .mh-footer-text a:focus {
            color: #ffffff;
            text-decoration: none;
        }

.mh-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mh-footer-links li {
        margin-bottom: 10px;
    }

    .mh-footer-links a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
    }

        .mh-footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

.mh-footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.mh-footer-small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

    .mh-footer-small a {
        color: #ffffff;
        text-decoration: none;
    }

        .mh-footer-small a:hover,
        .mh-footer-small a:focus {
            color: #ffffff;
            text-decoration: none;
        }

@media (max-width: 991.98px) {
    .mh-menu .mh-link {
        padding: 12px 12px;
    }

    .mh-lang-wrap {
        padding-top: 10px;
        padding-bottom: 6px;
    }
}
/* Scroll to top button */
.mh-scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 3px solid var(--mahill-red);
    background: #ffffff;
    color: var(--mahill-blue);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

    .mh-scroll-top:hover {
        background: var(--mahill-blue);
        color: #ffffff;
        border-color: var(--mahill-blue);
    }

    /* Show state */
    .mh-scroll-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Mobile tweak */
@media (max-width: 575.98px) {
    .mh-scroll-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}



.mh-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: stretch;
    background-image: url("../Images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mh-hero-overlay {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 90px 0 70px 0;
    background: linear-gradient( 90deg, rgba(3, 7, 18, 0.82) 0%, rgba(3, 7, 18, 0.62) 50%, rgba(3, 7, 18, 0.42) 100% );
}


.mh-hero-row {
    min-height: 58vh;
}

.mh-hero-title {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.05;
    font-size: 56px;
    margin: 0 0 16px 0;
}

.mh-hero-subtitle {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 60;
    line-height: 1.7;
    margin: 0 0 24px 0;
    max-width: 560px;
}

.mh-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.mh-btn-primary {
    background: var(--mahill-red);
    border: 1px solid var(--mahill-red);
    color: #ffffff;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 12px;
}

    .mh-btn-primary:hover {
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
        color: #ffffff;
    }

.mh-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 12px;
}

    .mh-btn-outline:hover {
        background: rgba(255, 255, 255, 0.10);
        border-color: rgba(255, 255, 255, 0.55);
        color: #ffffff;
    }

.mh-hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mh-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.16);
}

@media (max-width: 991.98px) {
    .mh-hero-overlay {
        padding: 70px 0 55px 0;
        background: rgba(3, 7, 18, 0.68);
    }

    .mh-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .mh-hero {
        min-height: 72vh;
    }

    .mh-hero-title {
        font-size: 34px;
    }

    .mh-hero-subtitle {
        font-size: 16px;
    }
}

.mh-hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.mh-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 14px;
}

    .mh-hero-trust-item i {
        font-size: 18px;
        color: var(--mahill-red);
    }

@media (max-width: 575.98px) {
    .mh-hero-trust {
        gap: 12px;
    }

    .mh-hero-trust-item {
        font-size: 13px;
        padding: 8px 12px;
    }
}

.mh-hero-logo-wrap {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);*/
}

.mh-hero-logo {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

/* Tablet and below */
@media (max-width: 991.98px) {
    .mh-hero-logo-wrap {
        max-width: 360px;
        margin: 10px auto 0 auto;
        padding: 16px;
    }

    .mh-hero-logo {
        max-height: 260px;
    }

    .mh-hero-title,
    .mh-hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .mh-hero-actions,
    .mh-hero-trust {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-hero-logo-wrap {
        max-width: 300px;
        padding: 14px;
        border-radius: 16px;
    }

    .mh-hero-logo {
        max-height: 220px;
    }
}

.mh-accent-text {
    color: #E11837; /* Mahill red */
    font-weight: 850;
}

.mh-about-v5 {
    padding: 100px 0;
    background: #ffffff;
}

/* THIS is the magic */
.mh-about-inner {
    max-width: 980px; /* controls text + cards width */
}

/* Text */
.mh-eyebrow {
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: 13px;
    color: rgba(225, 52, 46, 0.9);
    margin-bottom: 14px;
}

.mh-about-title {
    font-size: 52px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--mahill-blue);
    margin-bottom: 22px;
}

.mh-about-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 880px;
    margin-bottom: 18px;
    text-align: justify;
}

/* Button */
.mh-about-btn {
    margin-top: 8px;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 900;
    background: transparent;
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

    .mh-about-btn:hover {
        background: rgba(50, 50, 143, 0.08);
        border-color: rgba(50, 50, 143, 0.55);
        color: var(--mahill-red);
    }

/* Cards aligned with text width */
.mh-about-cards {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 980px;
}

/* Card design */
.mh-about-card {
    padding: 36px 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(50, 50, 143, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .mh-about-card i {
        font-size: 38px;
        color: var(--mahill-red);
        margin-bottom: 16px;
        display: block;
    }

    .mh-about-card h4 {
        font-size: 17px;
        font-weight: 900;
        color: var(--mahill-blue);
        margin: 0;
    }

    .mh-about-card:hover {
        transform: translateY(-6px);
        border-color: rgba(225, 52, 46, 0.35);
        box-shadow: 0 32px 85px rgba(0, 0, 0, 0.12);
    }

/* Tablet */
@media (max-width: 991.98px) {
    .mh-about-title {
        font-size: 40px;
    }

    .mh-about-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-about-v5 {
        padding: 70px 0;
    }

    .mh-about-title {
        font-size: 34px;
    }

    .mh-about-lead {
        font-size: 16px;
    }
}

.mh-products {
    padding: 95px 0;
    background: rgba(50, 50, 143, 0.02);
}

.mh-products-inner {
    max-width: 980px;
}

.mh-products-title {
    font-size: 46px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--mahill-blue);
    margin-bottom: 18px;
}

.mh-products-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 880px;
    margin-bottom: 18px;
    text-align: justify;
}

/* Brand grid */
.mh-brand-grid {
    margin-top: 36px;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* Brand item */
.mh-brand-grid {
    margin-top: 36px;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.mh-brand-item {
    width: 100%;
    min-width: 0;
    height: 90px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

    .mh-brand-item img {
        max-width: 100%;
        max-height: 64px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

/* Optional bigger logos */
.mh-brand-item-lg img {
    max-width: 100%;
    max-height: 74px;
}

.mh-brand-item-xl img {
    max-width: 100%;
    max-height: 82px;
}

/* Hover */
.mh-brand-item:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 52, 46, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Tablet */
@media (max-width: 991.98px) {

    .mh-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mh-brand-item {
        height: 86px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .mh-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .mh-brand-item {
        width: 100%;
        height: 82px;
        padding: 10px;
    }

        .mh-brand-item img {
            max-width: 100%;
            max-height: 58px;
        }
}

.mh-stats {
    padding: 95px 0;
    background: #ffffff;
}

.mh-stats-inner {
    max-width: 980px;
}

.mh-stats-title {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--mahill-blue);
    margin-bottom: 16px;
}

.mh-stats-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 880px;
    margin-bottom: 26px;
    text-align: justify;
}

.mh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.mh-stat-card {
    padding: 26px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(50, 50, 143, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .mh-stat-card i {
        font-size: 28px;
        color: var(--mahill-red);
        margin-bottom: 12px;
    }

.mh-stat-number {
    font-size: 44px;
    font-weight: 950;
    color: var(--mahill-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.mh-stat-label {
    font-size: 14px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.75);
}

.mh-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 52, 46, 0.35);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.10);
}

@media (max-width: 991.98px) {
    .mh-stats-title {
        font-size: 38px;
    }

    .mh-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .mh-stats-title {
        font-size: 32px;
    }

    .mh-stats-grid {
        grid-template-columns: 1fr;
    }
}

.mh-clients {
    padding: 95px 0;
    background: #ffffff;
}

.mh-clients-inner {
    max-width: 980px;
}

.mh-clients-title {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--mahill-blue);
    margin-bottom: 16px;
}

.mh-clients-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 880px;
    margin-bottom: 26px;
    text-align: justify;
}

.mh-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.mh-client-item {
    height: 90px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

    .mh-client-item img {
        max-width: 120px;
        max-height: 52px;
        width: auto;
        height: auto;
        display: block;
    }

    .mh-client-item:hover {
        transform: translateY(-4px);
        border-color: rgba(225, 52, 46, 0.35);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    }

/* Tablet */
@media (max-width: 991.98px) {
    .mh-clients-title {
        font-size: 38px;
    }

    .mh-clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-clients-title {
        font-size: 32px;
    }

    .mh-clients-lead {
        font-size: 16px;
    }

    .mh-clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .mh-client-item {
        height: 80px;
    }
}

.mh-contact {
    padding: 95px 0;
    background: rgba(50, 50, 143, 0.03) !important;
}

.mh-contact-inner {
    max-width: 980px;
}

.mh-contact-title {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--mahill-blue);
    margin-bottom: 16px;
}

.mh-contact-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 880px;
    margin-bottom: 28px;
    text-align: justify;
}

.mh-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.mh-contact-card {
    padding: 26px 24px;
    border-radius: 18px;
    background: #ffffff !important;
    border: 1px solid rgba(50, 50, 143, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mh-contact-card-primary {
    border-color: rgba(225, 52, 46, 0.22);
}

.mh-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 52, 46, 0.35);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.10);
}

.mh-contact-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .mh-contact-card-top i {
        font-size: 24px;
        color: var(--mahill-red);
    }

    .mh-contact-card-top h4 {
        font-size: 18px;
        font-weight: 950;
        color: var(--mahill-blue);
        margin: 0;
    }

.mh-contact-card-body {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.mh-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 24, 39, 0.78);
    font-weight: 700;
    font-size: 14px;
}

    .mh-contact-line i {
        color: var(--mahill-blue);
        font-size: 15px;
    }

    .mh-contact-line a {
        color: rgba(17, 24, 39, 0.78);
        text-decoration: none;
    }

        .mh-contact-line a:hover {
            text-decoration: none;
            opacity: 0.85;
        }


.mh-contact-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* CTA strip */
.mh-contact-cta {
    margin-top: 28px;
    padding: 22px 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(50, 50, 143, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mh-contact-cta-text {
    font-weight: 900;
    color: var(--mahill-blue);
}

.mh-contact-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Tablet */
@media (max-width: 991.98px) {
    .mh-contact-title {
        font-size: 38px;
    }

    .mh-contact-grid {
        grid-template-columns: 1fr;
    }

    .mh-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-contact-title {
        font-size: 32px;
    }

    .mh-contact-lead {
        font-size: 16px;
    }
}

/* Inner pages hero (About, later Careers, etc.) */
.mh-hero--inner {
    min-height: 48vh;
}

    .mh-hero--inner .mh-hero-overlay {
        padding: 80px 0 60px 0;
        background: linear-gradient( 90deg, rgba(3, 7, 18, 0.85) 0%, rgba(3, 7, 18, 0.65) 55%, rgba(3, 7, 18, 0.45) 100% );
    }

/* Typography tuning for inner hero */
.mh-hero-title-inner {
    font-size: 48px;
    line-height: 1.15;
    max-width: 760px;
}

.mh-hero-subtitle-inner {
    font-size: 17px;
    line-height: 1.7;
    max-width: 640px;
}

/* Tablet */
@media (max-width: 991.98px) {
    .mh-hero--inner {
        min-height: 40vh;
    }

    .mh-hero-title-inner {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-hero--inner {
        min-height: 36vh;
    }

    .mh-hero-overlay {
        padding: 70px 0 50px 0;
    }

    .mh-hero-title-inner {
        font-size: 32px;
    }

    .mh-hero-subtitle-inner {
        font-size: 16px;
    }
}


.mh-eyebrow-hero {
    color: rgba(255, 255, 255, 0.9);
}

.mh-hero-title-page {
    font-size: 58px;
    max-width: 920px;
}

.mh-hero-subtitle-page {
    max-width: 760px;
}

/* About page layout */
.mh-aboutpage {
    padding: 90px 0;
    background: #ffffff;
}

.mh-page-inner {
    max-width: 980px;
}

.mh-section {
    margin-bottom: 70px;
}

.mh-section-title-lg {
    font-size: 42px;
    font-weight: 950;
    color: var(--mahill-blue);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.mh-paragraph {
    font-size: 16px;
    line-height: 1.95;
    color: var(--text-muted);
    text-align: justify;
    margin: 0 0 18px 0;
    max-width: 920px;
}

/* Highlight grid */
.mh-highlight-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mh-highlight {
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

    .mh-highlight i {
        font-size: 22px;
        color: var(--mahill-red);
        display: block;
        margin-bottom: 10px;
    }

.mh-highlight-title {
    font-weight: 900;
    color: var(--mahill-blue);
    font-size: 14px;
    margin-bottom: 6px;
}

.mh-highlight-value {
    color: rgba(17, 24, 39, 0.75);
    font-weight: 800;
    font-size: 13px;
}

/* Simple one-line history timeline */
.mh-history-simple {
    position: relative;
    margin-top: 24px;
    padding-left: 34px;
    max-width: 980px;
}

.mh-history-simple-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;
    width: 2px;
    background: rgba(50, 50, 143, 0.18);
}

.mh-history-simple-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
}

.mh-history-simple-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 3px solid var(--mahill-red);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    margin-top: 8px;
    flex-shrink: 0;
}

.mh-history-simple-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mh-history-simple-year {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(50, 50, 143, 0.18);
    background: rgba(50, 50, 143, 0.05);
    color: var(--mahill-blue);
    font-weight: 950;
    font-size: 14px;
}

.mh-history-simple-card {
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .mh-history-simple-card h4 {
        margin: 0 0 10px 0;
        font-size: 18px;
        font-weight: 950;
        color: var(--mahill-blue);
    }

    .mh-history-simple-card p {
        margin: 0;
        font-size: 15px;
        line-height: 1.85;
        color: var(--text-muted);
        text-align: justify;
    }

    .mh-history-simple-card:hover {
        transform: translateY(-4px);
        border-color: rgba(225, 52, 46, 0.30);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
    }

/* Mobile */
@media (max-width: 575.98px) {
    .mh-history-simple {
        padding-left: 28px;
    }

    .mh-history-simple-item {
        gap: 18px;
    }

    .mh-history-simple-card {
        padding: 20px 18px;
    }
}


/* Vision Mission cards */
.mh-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
}

.mh-vm-card {
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.06);
}

.mh-vm-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

    .mh-vm-top i {
        font-size: 24px;
        color: var(--mahill-red);
    }

    .mh-vm-top h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 950;
        color: var(--mahill-blue);
    }

/* Values grid */
.mh-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.mh-value-card {
    padding: 22px 18px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .mh-value-card i {
        font-size: 22px;
        color: var(--mahill-red);
    }

    .mh-value-card h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 900;
        color: var(--mahill-blue);
    }

/* Footprint */
.mh-footprint-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mh-footprint-card {
    padding: 22px 18px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(50, 50, 143, 0.02);
}

    .mh-footprint-card h4 {
        margin: 0 0 8px 0;
        font-size: 16px;
        font-weight: 950;
        color: var(--mahill-blue);
    }

.mh-footprint-note {
    color: rgba(17, 24, 39, 0.72);
    font-weight: 700;
    font-size: 14px;
}

/* Authorization Section */
.mh-auth-card {
    margin-top: 14px;
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(50, 50, 143, 0.02);
}

.mh-auth-card-compact {
    padding: 20px 20px;
}

.mh-auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.mh-auth-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mh-auth-brand-logo img {
        max-width: 38px;
        max-height: 38px;
        width: auto;
        height: auto;
        display: block;
    }

.mh-auth-brand-title {
    font-size: 18px;
    font-weight: 950;
    color: var(--mahill-blue);
    line-height: 1.2;
}

.mh-auth-brand-subtitle {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.65);
}

.mh-auth-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    text-align: justify;
    margin: 0 0 14px 0;
    max-width: 520px;
}

.mh-auth-view-btn {
    padding: 10px 18px;
    font-weight: 900;
}

.mh-auth-card.h-100 {
    display: flex;
    flex-direction: column;
}

/* Letter preview (ONLY the document, no extra card behind it) */
.mh-auth-letter {
    margin-top: auto;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mh-auth-letter img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
        border: 1px solid rgba(0, 0, 0, 0.18);
        background: #ffffff;
    }

@media (max-width: 991.98px) {
    .mh-auth-desc {
        max-width: none;
    }

    .mh-auth-letter {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .mh-auth-letter {
        height: 220px;
    }
}
/* Mini authorization card – 3 per row */
.mh-auth-card-mini {
    padding: 16px 16px;
}

    /* Brand header */
    .mh-auth-card-mini .mh-auth-brand {
        gap: 12px;
        margin-bottom: 10px;
    }

    .mh-auth-card-mini .mh-auth-brand-logo {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

        .mh-auth-card-mini .mh-auth-brand-logo img {
            max-width: 34px;
            max-height: 34px;
        }

    /* Typography tightening */
    .mh-auth-card-mini .mh-auth-brand-title {
        font-size: 16px;
    }

    .mh-auth-card-mini .mh-auth-brand-subtitle {
        font-size: 12px;
    }

    .mh-auth-card-mini .mh-auth-desc {
        font-size: 13px;
        line-height: 1.75;
        margin: 0 0 10px 0;
    }

    /* Letter preview */
    .mh-auth-card-mini .mh-auth-letter {
        height: 200px;
    }

/* Button visibility fix */
#mhAuthorization .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
}

    #mhAuthorization .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

.mh-auth-card-mini .mh-auth-view-btn {
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 900;
}

/* Fix outline button visibility inside authorization cards */
.mh-auth-card .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
}

    .mh-auth-card .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

/* CTA strip */
.mh-cta-strip {
    padding: 22px 22px;
    border-radius: 18px;
    background: rgba(50, 50, 143, 0.03);
    border: 1px solid rgba(50, 50, 143, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mh-cta-text {
    font-weight: 950;
    color: var(--mahill-blue);
}

.mh-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .mh-hero-title-page {
        font-size: 44px;
    }

    .mh-section-title-lg {
        font-size: 36px;
    }

    .mh-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-vm-grid {
        grid-template-columns: 1fr;
    }

    .mh-values-grid {
        grid-template-columns: 1fr;
    }

    .mh-footprint-grid {
        grid-template-columns: 1fr;
    }

    .mh-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .mh-hero-title-page {
        font-size: 36px;
    }

    .mh-section-title-lg {
        font-size: 32px;
    }
}
/* CTA strip button contrast fix */
.mh-cta-strip .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
}

    .mh-cta-strip .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

.mh-products-page {
    padding: 90px 0;
    background: #ffffff;
}

/* Categories grid */
/*.mh-cat-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
}

.mh-cat-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}*/

/* Image container – square friendly */
/*.mh-cat-img {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(50, 50, 143, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

    .mh-cat-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }*/

/* Title */
/*.mh-cat-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 950;
    color: var(--mahill-blue);
    text-align: center;
}*/

/* Hover */
/*.mh-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 52, 46, 0.35);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.10);
}*/

/* Responsive */
/*@media (max-width: 991.98px) {
    .mh-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .mh-cat-grid {
        grid-template-columns: 1fr;
    }

    .mh-cat-img {
        height: 180px;
    }
}*/

.mh-cat-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
}

.mh-cat-card {
    position: relative;
    min-height: 170px;
    padding: 26px;
    border-radius: 18px;
    /* New premium border */
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient( 135deg, rgba(225, 52, 46, .22), rgba(50, 50, 143, .16), rgba(225, 52, 46, .08) ) border-box;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

    /* Accent line */
    /*.mh-cat-card::before {
        content: "";
        position: absolute;
        top: 14px;
        left: 18px;
        width: 48px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, var(--mahill-red), var(--mahill-blue) );
    }*/

    .mh-cat-card h4 {
        margin: 0;
        color: var(--mahill-blue);
        font-size: 22px;
        font-weight: 950;
        line-height: 1.35;
        transition: color .18s ease;
    }

    /* Hover */
    .mh-cat-card:hover {
        transform: translateY(-8px);
        background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient( 135deg, var(--mahill-red), var(--mahill-blue) ) border-box;
        box-shadow: 0 28px 75px rgba(50, 50, 143, .10);
    }

        .mh-cat-card:hover h4 {
            color: var(--mahill-red);
        }

/* Tablet */
@media (max-width: 991.98px) {
    .mh-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mh-cat-grid {
        grid-template-columns: 1fr;
    }

    .mh-cat-card {
        min-height: 140px;
        padding: 22px;
    }

        .mh-cat-card h4 {
            font-size: 18px;
        }

        .mh-cat-card::before {
            width: 38px;
        }
}

/* Brand groups */
.mh-brand-groups {
    display: grid;
    gap: 26px;
    margin-top: 14px;
}

.mh-brand-group {
    padding: 24px 22px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(50, 50, 143, 0.02);
}

.mh-brand-group-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

    .mh-brand-group-top h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 950;
        color: var(--mahill-blue);
    }

    .mh-brand-group-top span {
        font-size: 13px;
        font-weight: 800;
        color: rgba(17, 24, 39, 0.65);
    }

/* Reuse your brand grid styles */
.mh-brand-group .mh-brand-grid {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .mh-cat-grid {
        grid-template-columns: 1fr;
    }

    .mh-brand-group-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mh-downloads {
    padding: 90px 0;
    background: #ffffff;
}

.mh-downloads-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 980px;
}

.mh-downloads-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    min-width: 320px;
}

    .mh-downloads-search i {
        color: rgba(17, 24, 39, 0.55);
        font-size: 16px;
    }

    .mh-downloads-search input {
        border: none;
        outline: none;
        width: 100%;
        font-weight: 800;
        color: var(--mahill-blue);
        background: transparent;
    }

.mh-downloads-hint {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.55);
}

/* Brand group */
.mh-brand-docs {
    margin-top: 24px;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(50, 50, 143, 0.02);
    max-width: 980px;
}

.mh-brand-docs-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.mh-brand-docs-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mh-brand-docs-logo img {
        max-width: 38px;
        max-height: 38px;
        display: block;
    }

.mh-brand-name {
    font-size: 18px;
    font-weight: 950;
    color: var(--mahill-blue);
}

.mh-brand-sub {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.6);
}

.mh-doc-card-disabled {
    opacity: .78;
}

    .mh-doc-card-disabled .mh-doc-btn {
        cursor: not-allowed;
        color: rgba(50, 50, 143, .65);
        border-color: rgba(50, 50, 143, .2);
        background: rgba(50, 50, 143, .04);
    }

/* Document cards */
.mh-doc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.mh-doc-card {
    padding: 16px 16px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mh-doc-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mh-doc-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(225, 52, 46, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mh-doc-ico i {
        font-size: 18px;
        color: var(--mahill-red);
    }

.mh-doc-title {
    font-weight: 950;
    color: var(--mahill-blue);
    font-size: 15px;
}

.mh-doc-meta {
    font-size: 12px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.55);
    margin-top: 4px;
}

.mh-doc-btn {
    white-space: nowrap;
}

/* Make outline buttons visible in downloads page cards */
.mh-doc-card .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
}

    .mh-doc-card .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

@media (max-width: 575.98px) {
    .mh-downloads-search {
        min-width: 100%;
    }

    .mh-doc-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mh-doc-btn {
        width: 100%;
        text-align: center;
    }
}
/* Catalog card (same philosophy as auth letter cards) */
.mh-catalog-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

/* Full-page catalog preview (mini) */
.mh-catalog-cover {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mh-catalog-cover img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
        border: 1px solid rgba(0, 0, 0, 0.18);
        background: #ffffff;
    }

/* Catalog button visibility (light background fix) */
.mh-catalog-card .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
    font-weight: 900;
}

    .mh-catalog-card .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

/* Responsive */
@media (max-width: 991.98px) {
    .mh-catalog-cover {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .mh-catalog-cover {
        height: 220px;
    }
}

.mh-contact {
    padding: 90px 0;
    background: #ffffff;
}

/* Contact cards */
.mh-contact-card {
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(50, 50, 143, 0.02);
    height: 100%;
}

.mh-contact-ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .mh-contact-ico i {
        font-size: 20px;
        color: var(--mahill-red);
    }

.mh-contact-title {
    font-size: 16px;
    font-weight: 950;
    color: var(--mahill-blue);
    margin-bottom: 6px;
}

.mh-contact-text {
    font-size: 15px;
    font-weight: 850;
    color: rgba(17, 24, 39, 0.78);
}

    .mh-contact-text a {
        color: rgba(17, 24, 39, 0.78);
        text-decoration: none;
    }


.mh-contact-note {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.55);
    margin-top: 6px;
}

/* Branch cards */
.mh-branch-card {
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mh-branch-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mh-branch-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: rgba(225, 52, 46, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mh-branch-ico i {
        color: var(--mahill-red);
        font-size: 18px;
    }

.mh-branch-title {
    font-size: 16px;
    font-weight: 950;
    color: var(--mahill-blue);
}

.mh-branch-sub {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.55);
}

.mh-branch-info {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.mh-branch-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 24, 39, 0.75);
    font-weight: 800;
    font-size: 13px;
}

    .mh-branch-line i {
        color: var(--mahill-blue);
        font-size: 14px;
    }

    .mh-branch-line a {
        color: rgba(17, 24, 39, 0.75);
        text-decoration: none;
    }

        .mh-branch-line a:hover {
            text-decoration: none;
            opacity: 0.85;
        }


.mh-office-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 18px;
}

.mh-branch-btn {
    margin-top: 12px;
}

/* Make outline buttons visible on white cards */
.mh-branch-card .mh-btn-outline {
    color: var(--mahill-blue);
    border: 2px solid rgba(50, 50, 143, 0.35);
    background: #ffffff;
    font-weight: 900;
}

    .mh-branch-card .mh-btn-outline:hover {
        color: #ffffff;
        background: var(--mahill-blue);
        border-color: var(--mahill-blue);
    }

/* Office card */
.mh-office-card {
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    background: #ffffff;
    max-width: 1100px;
}

.mh-office-title {
    font-size: 18px;
    font-weight: 950;
    color: var(--mahill-blue);
    margin-bottom: 10px;
}

.mh-office-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 850;
    color: rgba(17, 24, 39, 0.75);
}

    .mh-office-line i {
        color: var(--mahill-red);
        font-size: 16px;
    }

.mh-office-map iframe {
    border-radius: 18px;
    border: 1px solid rgba(50, 50, 143, 0.12);
    width: 100%;
}

.mh-office-info {
    display: flex;
    flex-direction: column;
}

.mh-office-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 850;
    color: rgba(17, 24, 39, 0.75);
}

    .mh-office-row i {
        color: var(--mahill-red);
        font-size: 16px;
    }

    .mh-office-row a {
        color: rgba(17, 24, 39, 0.75);
        text-decoration: none;
    }

        .mh-office-row a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
