/* ==========================================================================
   global.css — MedVita Health Tech
   Core design tokens + minimal base reset.
   Colours are sampled directly from the MVHT logo.
   ========================================================================== */

:root {
    /* Brand colours */
    --mvht-blue: #0A66C2;
    --mvht-blue-dark: #084E96;
    --mvht-blue-light: #E9F1FB;
    --mvht-red: #E31E24;
    --mvht-charcoal: #2B2A29;
    --mvht-white: #FFFFFF;
    --mvht-grey-100: #F5F7FA;
    --mvht-grey-300: #D7DCE2;
    --mvht-grey-500: #8A9099;

    /* Typography */
    --mvht-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
    --mvht-font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;

    /* Layout */
    --mvht-container-width: 1200px;
    --mvht-container-pad: 24px;
    --mvht-radius: 10px;
    --mvht-shadow: 0 8px 24px rgba(43, 42, 41, 0.08);

    /* Header specific */
    --mvht-header-height: 84px;
    --mvht-header-height-mobile: 64px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--mvht-font-body);
    color: var(--mvht-charcoal);
    background: var(--mvht-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mvht-container {
    width: 100%;
    max-width: var(--mvht-container-width);
    margin: 0 auto;
    padding: 0 var(--mvht-container-pad);
}

/* Reusable button component (used by header CTA and future sections) */
.mvht-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--mvht-radius);
    font-family: var(--mvht-font-body);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mvht-btn--primary {
    background: var(--mvht-blue);
    color: var(--mvht-white);
}

.mvht-btn--primary:hover {
    background: var(--mvht-blue-dark);
    transform: translateY(-1px);
}

.mvht-btn--outline {
    background: transparent;
    color: var(--mvht-blue);
    border-color: var(--mvht-blue);
}

.mvht-btn--outline:hover {
    background: var(--mvht-blue-light);
}
/* ==========================================================================
 — MedVita Health Tech
   Section: Homepage → Hero
   ========================================================================== */

.mvht-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--mvht-blue-light) 0%, var(--mvht-white) 65%);
    padding: 96px 0 80px;
}

.mvht-hero__inner {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 56px;
}

/* Content */
.mvht-hero__content {
    animation: mvhtFadeUp 0.7s ease both;
}

.mvht-hero__eyebrow {
    font-family: var(--mvht-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mvht-blue);
    margin: 0 0 18px;
}

.mvht-hero__title {
    font-family: var(--mvht-font-heading);
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 22px;
}

.mvht-hero__title span {
    color: var(--mvht-blue);
}

.mvht-hero__subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    max-width: 520px;
    margin: 0 0 36px;
}

.mvht-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual */
.mvht-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    animation: mvhtFadeIn 0.9s ease both;
    animation-delay: 0.15s;
}

.mvht-hero__shape {
    position: absolute;
    border-radius: 50%;
}

.mvht-hero__shape--blue {
    width: 320px;
    height: 320px;
    background: var(--mvht-blue);
    opacity: 0.08;
}

.mvht-hero__shape--outline {
    width: 380px;
    height: 380px;
    border: 2px solid var(--mvht-blue);
    opacity: 0.15;
}

.mvht-hero__ecg {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;
}

.mvht-hero__ecg-line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: mvhtDrawLine 2.2s ease-out 0.4s forwards;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes mvhtFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes mvhtFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes mvhtDrawLine {
    to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .mvht-hero__content,
    .mvht-hero__visual,
    .mvht-hero__ecg-line {
        animation: none;
        stroke-dashoffset: 0;
    }
}

/* ==========================================================================
   Responsive — Laptop, Tablet, Mobile
   ========================================================================== */

@media (max-width: 1199px) {
    .mvht-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .mvht-hero {
        padding: 64px 0 56px;
    }

    .mvht-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mvht-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .mvht-hero__actions {
        justify-content: center;
    }

    .mvht-hero__visual {
        min-height: 260px;
        order: -1;
    }

    .mvht-hero__shape--blue {
        width: 220px;
        height: 220px;
    }

    .mvht-hero__shape--outline {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 600px) {
    .mvht-hero__title {
        font-size: 32px;
    }

    .mvht-hero__subtitle {
        font-size: 15px;
    }

    .mvht-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .mvht-hero__actions .mvht-btn {
        width: 100%;
    }
}
/* ==========================================================================
   Homepage → About / Introduction Section
   ========================================================================== */

.mvht-section-eyebrow {
    font-family: var(--mvht-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mvht-blue);
    margin: 0 0 16px;
}

.mvht-section-title {
    font-family: var(--mvht-font-heading);
    font-size: 34px;
    line-height: 1.28;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 20px;
}

.mvht-about {
    padding: 80px 0;
}

.mvht-about__inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 64px;
}

.mvht-about__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvht-about__shape {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 100%;
    height: 100%;
    background: var(--mvht-blue-light);
    border-radius: var(--mvht-radius);
    z-index: 0;
}

.mvht-about__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--mvht-radius);
    box-shadow: var(--mvht-shadow);
    object-fit: cover;
    aspect-ratio: 560 / 620;
}

.mvht-about__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-grey-500);
    margin: 0 0 20px;
    max-width: 540px;
}

/* Responsive — Tablet & Mobile */
@media (max-width: 991px) {
    .mvht-about {
        padding: 56px 0;
    }

    .mvht-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mvht-about__shape {
        top: -16px;
        left: -16px;
    }

    .mvht-about__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .mvht-about__text {
        margin-left: auto;
        margin-right: auto;
    }

    .mvht-section-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .mvht-section-title {
        font-size: 24px;
    }

    .mvht-about__text {
        font-size: 15px;
    }
}
/* ==========================================================================
   Homepage → Business Verticals Section
   ========================================================================== */

.mvht-verticals {
    padding: 80px 0;
    background: var(--mvht-grey-100);
}

.mvht-verticals__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.mvht-verticals__header .mvht-section-title {
    margin-bottom: 0;
}

.mvht-verticals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvht-vertical-card {
    background: var(--mvht-white);
    border-radius: var(--mvht-radius);
    box-shadow: var(--mvht-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mvht-vertical-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(43, 42, 41, 0.14);
}

.mvht-vertical-card__media {
    width: 100%;
    aspect-ratio: 400 / 280;
    overflow: hidden;
}

.mvht-vertical-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mvht-vertical-card:hover .mvht-vertical-card__image {
    transform: scale(1.06);
}

.mvht-vertical-card__body {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mvht-vertical-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mvht-blue-light);
    margin: -54px 0 20px;
    position: relative;
    z-index: 1;
}

.mvht-vertical-card__icon svg {
    width: 26px;
    height: 26px;
}

.mvht-vertical-card__title {
    font-family: var(--mvht-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 12px;
}

.mvht-vertical-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0 0 22px;
    flex: 1;
}

.mvht-vertical-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mvht-blue);
    transition: gap 0.2s ease, color 0.2s ease;
}

.mvht-vertical-card__link svg {
    transition: transform 0.2s ease;
}

.mvht-vertical-card__link:hover {
    color: var(--mvht-blue-dark);
    gap: 10px;
}

.mvht-vertical-card__link:hover svg {
    transform: translateX(2px);
}

/* Responsive — Laptop, Tablet, Mobile */
@media (max-width: 991px) {
    .mvht-verticals {
        padding: 56px 0;
    }

    .mvht-verticals__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvht-verticals__header {
        margin-bottom: 36px;
    }
}

@media (max-width: 640px) {
    .mvht-verticals__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mvht-vertical-card__body {
        padding: 24px 22px 26px;
    }
}
/* ==========================================================================
   Homepage → Featured Services Section
   ========================================================================== */

.mvht-services {
    padding: 80px 0;
}

.mvht-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvht-service-card {
    padding: 32px 26px;
    border: 1px solid var(--mvht-grey-300);
    border-radius: var(--mvht-radius);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mvht-service-card:hover {
    border-color: transparent;
    box-shadow: var(--mvht-shadow);
    transform: translateY(-4px);
}

.mvht-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mvht-blue-light);
    color: var(--mvht-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

.mvht-service-card__title {
    font-family: var(--mvht-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 12px;
    line-height: 1.35;
}

.mvht-service-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0 0 18px;
    min-height: 96px;
}

/* Responsive — Tablet & Mobile */
@media (max-width: 991px) {
    .mvht-services {
        padding: 56px 0;
    }

    .mvht-services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .mvht-services__grid {
        grid-template-columns: 1fr;
    }

    .mvht-service-card__text {
        min-height: 0;
    }
}
/* ==========================================================================
   Homepage → Healthcare Highlight Section
   ========================================================================== */

.mvht-highlight {
    padding: 80px 0;
    background: var(--mvht-grey-100);
}

.mvht-highlight__inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 64px;
}

.mvht-highlight__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-grey-500);
    max-width: 560px;
    margin: 0 0 28px;
}

.mvht-highlight__checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 32px;
}

.mvht-highlight__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mvht-charcoal);
}

.mvht-highlight__checklist i {
    color: var(--mvht-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.mvht-highlight__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvht-highlight__shape {
    position: absolute;
    top: 24px;
    right: -24px;
    width: 100%;
    height: 100%;
    background: var(--mvht-blue);
    opacity: 0.08;
    border-radius: var(--mvht-radius);
    z-index: 0;
}

.mvht-highlight__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--mvht-radius);
    box-shadow: var(--mvht-shadow);
    object-fit: cover;
    aspect-ratio: 560 / 600;
}

.mvht-highlight__badge {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mvht-white);
    color: var(--mvht-charcoal);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: var(--mvht-shadow);
}

.mvht-highlight__badge i {
    color: var(--mvht-red);
}

/* Alternate layout — image on the left (used by Technology Highlight etc.) */
.mvht-highlight--reverse .mvht-highlight__inner {
    grid-template-columns: 0.85fr 1fr;
}

.mvht-highlight--reverse .mvht-highlight__content {
    order: 2;
}

.mvht-highlight--reverse .mvht-highlight__visual {
    order: 1;
}

.mvht-highlight--reverse .mvht-highlight__shape {
    right: auto;
    left: -24px;
}

/* Responsive — Tablet & Mobile */
@media (max-width: 991px) {
    .mvht-highlight {
        padding: 56px 0;
    }

    .mvht-highlight__inner,
    .mvht-highlight--reverse .mvht-highlight__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .mvht-highlight__content {
        text-align: left;
    }

    .mvht-highlight--reverse .mvht-highlight__content,
    .mvht-highlight--reverse .mvht-highlight__visual {
        order: unset;
    }

    .mvht-highlight__visual {
        order: -1;
    }

    .mvht-highlight__text {
        margin-left: 0;
        margin-right: 0;
    }

    .mvht-highlight__checklist {
        align-items: flex-start;
        text-align: left;
        width: fit-content;
        margin-left: 0;
        margin-right: 0;
    }

    .mvht-highlight__shape,
    .mvht-highlight--reverse .mvht-highlight__shape {
        top: 16px;
        left: 16px;
        right: auto;
    }

    .mvht-highlight__image {
        max-width: 420px;
        margin: 0 auto;
    }
}
/* ==========================================================================
   Homepage → Why MedVita Section
   ========================================================================== */

.mvht-why {
    padding: 88px 0;
    background: var(--mvht-white);
}

.mvht-why__header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.mvht-why__intro {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-grey-500);
    margin: 0;
}

.mvht-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvht-why-card {
    padding: 32px 26px;
    background: var(--mvht-blue-light);
    border-radius: var(--mvht-radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mvht-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mvht-shadow);
}

.mvht-why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mvht-white);
    color: var(--mvht-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

.mvht-why-card__title {
    font-family: var(--mvht-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 10px;
    line-height: 1.35;
}

.mvht-why-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0;
}

/* Responsive — Tablet & Mobile */
@media (max-width: 991px) {
    .mvht-why {
        padding: 56px 0;
    }

    .mvht-why__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .mvht-why__grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Homepage → CTA Section (Option B — Light card, split layout)
   ========================================================================== */

.mvht-cta {
    padding: 40px 0;
    background: var(--mvht-white);
}

.mvht-cta__inner {
    background: var(--mvht-grey-100);
    border: 0.5px solid var(--mvht-grey-300);
    border-radius: 12px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.mvht-cta__content {
    max-width: 460px;
}

.mvht-cta__content .mvht-section-eyebrow {
    margin-bottom: 10px;
}

.mvht-cta__title {
    font-family: var(--mvht-font-heading);
    font-size: 26px;
    line-height: 1.32;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 10px;
}

.mvht-cta__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0;
}

.mvht-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Responsive — Laptop, Tablet, Mobile */
@media (max-width: 991px) {
    .mvht-cta {
        padding: 32px 0;
    }

    .mvht-cta__inner {
        padding: 32px 28px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .mvht-cta {
        padding: 24px 20px;
    }

    .mvht-cta__inner {
        padding: 28px 22px;
    }

    .mvht-cta__title {
        font-size: 21px;
    }

    .mvht-cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .mvht-cta .mvht-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Inside-Page Header (Breadcrumb + Page Title)
   Common banner used at the top of every inner page (Contact, About,
   Healthcare, Ancillary, Software & Hi-Tech and their sub-pages).
   Not used on the homepage.
   ========================================================================== */

.mvht-page-header {
    background: var(--mvht-blue-light);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--mvht-grey-300);
}

.mvht-page-header__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Breadcrumb */
.mvht-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    align-items: center;
    gap: 6px;
}

.mvht-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mvht-font-body);
    font-size: 14px;
}

.mvht-breadcrumb__item a {
    color: var(--mvht-blue);
    font-weight: 500;
    transition: color 0.2s ease;
}

.mvht-breadcrumb__item a:hover {
    color: var(--mvht-blue-dark);
    text-decoration: underline;
}

.mvht-breadcrumb__sep {
    color: var(--mvht-grey-500);
}

.mvht-breadcrumb__current {
    color: var(--mvht-grey-500);
}

/* Title */
.mvht-page-header__title {
    font-family: var(--mvht-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--mvht-charcoal);
    margin: 0;
}

@media (max-width: 991px) {
    .mvht-page-header {
        padding: 36px 0 32px;
    }

    .mvht-page-header__title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .mvht-page-header {
        padding: 28px 0 24px;
    }

    .mvht-page-header__title {
        font-size: 24px;
    }

    .mvht-breadcrumb__item {
        font-size: 13px;
    }
}
/* ==========================================================================
   contact.css — MedVita Health Tech
   Section: Contact → Info + Form, Contact → Map
   ========================================================================== */

/* -------------------- Info + Form -------------------- */

.mvht-contact {
    padding: 80px 0;
}

.mvht-contact__inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    align-items: start;
}

.mvht-contact__intro {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-grey-500);
    max-width: 480px;
    margin: 0 0 32px;
}

.mvht-contact__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0 0 32px;
}

.mvht-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mvht-contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--mvht-blue-light);
    color: var(--mvht-blue);
    font-size: 17px;
}

.mvht-contact__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mvht-contact__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--mvht-grey-500);
}

.mvht-contact__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--mvht-charcoal);
}

.mvht-contact__value a {
    transition: color 0.2s ease;
}

.mvht-contact__value a:hover {
    color: var(--mvht-blue);
}

.mvht-contact__social {
    display: flex;
    gap: 12px;
}

.mvht-contact__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mvht-blue-light);
    color: var(--mvht-blue);
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mvht-contact__social a:hover {
    background: var(--mvht-blue);
    color: var(--mvht-white);
    transform: translateY(-2px);
}

/* Form panel */
.mvht-contact__form-wrap {
    background: var(--mvht-grey-100);
    border: 1px solid var(--mvht-grey-300);
    border-radius: var(--mvht-radius);
    padding: 36px;
}

.mvht-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mvht-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mvht-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mvht-charcoal);
}

.mvht-form-label span {
    color: var(--mvht-red);
}

.mvht-input,
.mvht-select,
.mvht-textarea {
    width: 100%;
    font-family: var(--mvht-font-body);
    font-size: 15px;
    color: var(--mvht-charcoal);
    background: var(--mvht-white);
    border: 1px solid var(--mvht-grey-300);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mvht-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A9099' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.mvht-textarea {
    resize: vertical;
    min-height: 120px;
}

.mvht-input:focus,
.mvht-select:focus,
.mvht-textarea:focus {
    outline: none;
    border-color: var(--mvht-blue);
    box-shadow: 0 0 0 3px var(--mvht-blue-light);
}

.mvht-input::placeholder,
.mvht-textarea::placeholder {
    color: var(--mvht-grey-500);
}

.mvht-contact__submit {
    width: 100%;
}

/* -------------------- Map -------------------- */

.mvht-map {
    padding: 0;
}

.mvht-map__inner {
    width: 100%;
}

.mvht-map__placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--mvht-blue-light);
    color: var(--mvht-grey-500);
}

.mvht-map__placeholder i {
    font-size: 32px;
    color: var(--mvht-blue);
}

.mvht-map__placeholder p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.mvht-map__inner iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ==========================================================================
   Responsive — Laptop, Tablet, Mobile
   ========================================================================== */

@media (max-width: 991px) {
    .mvht-contact {
        padding: 56px 0;
    }

    .mvht-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mvht-contact__form-wrap {
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .mvht-form-row {
        grid-template-columns: 1fr;
    }

    .mvht-contact__form-wrap {
        padding: 22px;
    }

    .mvht-map__placeholder,
    .mvht-map__inner iframe {
        height: 280px;
    }

.mvht-input,
.mvht-select,
.mvht-textarea {
    font-size: 16px;
}
}
/* ==========================================================================
   About → About Us Intro Section
   ========================================================================== */

.mvht-about-intro {
    padding: 80px 0;
}

.mvht-about-intro__inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 64px;
}

.mvht-about-intro__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvht-about-intro__shape {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 100%;
    height: 100%;
    background: var(--mvht-blue-light);
    border-radius: var(--mvht-radius);
    z-index: 0;
}

.mvht-about-intro__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--mvht-radius);
    box-shadow: var(--mvht-shadow);
    object-fit: cover;
    aspect-ratio: 640 / 720;
}

.mvht-about-intro__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-grey-500);
    margin: 0 0 28px;
    max-width: 560px;
}

.mvht-about-intro__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0 0 36px;
}

.mvht-about-intro__pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mvht-charcoal);
}

.mvht-about-intro__pillar i {
    color: var(--mvht-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.mvht-about-intro__actions {
    display: flex;
}

/* Responsive — Laptop, Tablet, Mobile */
@media (max-width: 991px) {
    .mvht-about-intro {
        padding: 56px 0;
    }

    .mvht-about-intro__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mvht-about-intro__shape {
        top: -16px;
        left: -16px;
    }

    .mvht-about-intro__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .mvht-about-intro__text {
        margin-left: auto;
        margin-right: auto;
    }

    .mvht-about-intro__pillars {
        justify-content: center;
        justify-items: start;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .mvht-about-intro__actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .mvht-about-intro__pillars {
        grid-template-columns: 1fr;
    }

    .mvht-about-intro__actions .mvht-btn {
        width: 100%;
    }
}
.mvht-services__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}
.mvht-highlight.mvht-highlight--no-bg {
    background: none;
}
/* ==========================================================================
   Legal Content Pages (Privacy Policy, Terms & Conditions)
   ========================================================================== */

.mvht-legal {
    padding: 56px 0 80px;
}

.mvht-legal__inner {
    max-width: 860px;
}

.mvht-legal__updated {
    font-size: 14px;
    color: var(--mvht-grey-500);
    margin: 0 0 32px;
}

.mvht-legal__inner h2 {
    font-family: var(--mvht-font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--mvht-charcoal);
    margin: 40px 0 14px;
}

.mvht-legal__inner h2:first-of-type {
    margin-top: 0;
}

.mvht-legal__inner p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mvht-charcoal);
    margin: 0 0 16px;
}

.mvht-legal__inner ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.mvht-legal__inner ul li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mvht-charcoal);
    margin-bottom: 8px;
}

.mvht-legal__contact {
    list-style: none;
    padding-left: 0;
    background: var(--mvht-grey-100);
    border-radius: var(--mvht-radius);
    padding: 20px 24px;
}

.mvht-legal__contact li {
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .mvht-legal {
        padding: 40px 0 56px;
    }

    .mvht-legal__inner h2 {
        font-size: 19px;
        margin: 32px 0 12px;
    }
}
/* ==========================================================================
   Floating WhatsApp / Call Buttons
   ========================================================================== */

.mvht-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mvht-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--mvht-white);
    font-size: 24px;
    box-shadow: var(--mvht-shadow);
    transition: transform 0.2s ease;
}

.mvht-float__btn:hover {
    transform: scale(1.08);
}

.mvht-float__btn--whatsapp {
    background: #25D366;
}

.mvht-float__btn--call {
    background: var(--mvht-blue);
    display: none; 
}

@media (max-width: 767px) {
    .mvht-float {
        right: 16px;
        bottom: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .mvht-float__btn {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .mvht-float__btn--call {
        display: flex; 
    }
}
/* ==========================================================================
Our Vision and Mission Section
   ========================================================================== */

.mvht-vision {
    padding: 80px 0;
    background: var(--mvht-grey-100);
}

.mvht-vision__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.mvht-vision__header .mvht-section-title {
    margin-bottom: 0;
}

.mvht-vision__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.mvht-vision-item {
    background: var(--mvht-white);
    border-radius: var(--mvht-radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--mvht-shadow);
}

.mvht-vision-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mvht-blue-light);
    color: var(--mvht-blue);
    font-size: 20px;
    margin-bottom: 18px;
}

.mvht-vision-item__title {
    font-family: var(--mvht-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 12px;
}

.mvht-vision-item__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0;
}

.mvht-vision__mission {
    position: relative;
    background: var(--mvht-blue-light);
    border-radius: var(--mvht-radius);
    padding: 40px 48px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.mvht-vision__mission i {
    color: var(--mvht-blue);
    font-size: 22px;
    opacity: 0.5;
    margin-bottom: 14px;
    display: inline-block;
}

.mvht-vision__mission p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mvht-charcoal);
    font-weight: 500;
    margin: 0;
}

/* Responsive — Laptop, Tablet, Mobile */
@media (max-width: 991px) {
    .mvht-vision {
        padding: 56px 0;
    }

    .mvht-vision__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvht-vision__mission {
        padding: 32px 28px;
    }
}

@media (max-width: 600px) {
    .mvht-vision__mission p {
        font-size: 15px;
    }
}
/* ==========================================================================
MedVita Solutions Section
   ========================================================================== */

.mvht-solutions {
    padding: 80px 0;
}

.mvht-solutions__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.mvht-solutions__header .mvht-section-title {
    margin-bottom: 0;
}

.mvht-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--mvht-grey-300);
    border-radius: var(--mvht-radius);
    overflow: hidden;
}

.mvht-solutions-item {
    padding: 36px 30px;
    border-right: 1px solid var(--mvht-grey-300);
}

.mvht-solutions-item:last-child {
    border-right: none;
}

.mvht-solutions-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mvht-blue-light);
    color: var(--mvht-blue);
    font-size: 20px;
    margin-bottom: 18px;
}

.mvht-solutions-item__title {
    font-family: var(--mvht-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--mvht-charcoal);
    margin: 0 0 12px;
}

.mvht-solutions-item__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mvht-grey-500);
    margin: 0;
}

/* Responsive — Laptop, Tablet, Mobile */
@media (max-width: 991px) {
    .mvht-solutions {
        padding: 56px 0;
    }

    .mvht-solutions__grid {
        grid-template-columns: 1fr;
        border-radius: var(--mvht-radius);
    }

    .mvht-solutions-item {
        border-right: none;
        border-bottom: 1px solid var(--mvht-grey-300);
    }

    .mvht-solutions-item:last-child {
        border-bottom: none;
    }
}
@media (max-width: 600px) {
    .mvht-about,
    .mvht-vision,
    .mvht-solutions,
    .mvht-verticals,
    .mvht-services,
    .mvht-highlight,
    .mvht-why {
        padding: 40px 0;
    }
}