:root {
    --vmt-primary: #037c84;
    --vmt-secondary: #d31725;
    --vmt-text: #1e1e1e;
    --vmt-text-light: #515151;
    --vmt-white: #ffffff;
    --vmt-font-heading: 'UTM Neutra', sans-serif;
    --vmt-font-body: 'UTM Avo', sans-serif;
    --vmt-container: 1200px;
}

/* Reset & Basics */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--vmt-font-body);
    color: var(--vmt-text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

body.vmt-modal-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.vmt-container {
    max-width: var(--vmt-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.vmt-section {
    padding: 60px 0;
}

.vmt-subtitle {
    text-align: center;
    color: var(--vmt-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vmt-heading {
    text-align: center;
    color: var(--vmt-secondary);
    font-family: var(--vmt-font-heading);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.vmt-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
}

.vmt-btn-primary {
    background: var(--vmt-primary);
    color: #fff;
}

.vmt-btn-secondary {
    background: var(--vmt-secondary);
    color: #fff;
}

.vmt-btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}

/* HEADER FIGMA DESIGN */
.vmt-header-figma {
    position: relative;
    z-index: 100;
    width: 100%;
    transition: transform 0.28s ease;
}

.vmt-header-figma.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.vmt-header-figma.sticky.hidden {
    transform: translateY(0);
}

body.vmt-has-sticky-header {
    padding-top: 0;
}

/* TOP BAR FIGMA */
.vmt-topbar-figma {
    --vmt-topbar-gap: 32px;
    --vmt-topbar-inline-padding: 20px;
    --vmt-topbar-item-height: 42px;
    --vmt-topbar-inline-gap-tight: 4px;
    background-color: #c2000e;
    color: white;
    height: 42px;
    font-size: 14px;
    font-family: var(--vmt-font-body);
}

.vmt-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--vmt-topbar-inline-padding);
}

.vmt-top-left {
    display: flex;
    align-items: center;
    gap: var(--vmt-topbar-gap);
    min-width: 0;
}

.vmt-brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.vmt-brand-dropdown {
    position: relative;
}

.vmt-brand-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--vmt-topbar-item-height);
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    font-family: var(--vmt-font-body);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
}

.vmt-brand-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 156px;
    padding: 6px 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 12000;
}

.vmt-brand-dropdown-item {
    display: block;
    padding: 9px 14px;
    color: #1f2d3a;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.vmt-brand-dropdown-item:hover {
    background: #f2f7fb;
    color: #037c84;
}

.vmt-brand-dropdown:hover .vmt-brand-dropdown-menu,
.vmt-brand-dropdown:focus-within .vmt-brand-dropdown-menu,
.vmt-brand-dropdown.is-open .vmt-brand-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vmt-brand-text {
    font-weight: 400;
}

.vmt-arrow {
    font-size: 12px;
}

.vmt-nav-link {
    display: inline-flex;
    align-items: center;
    height: var(--vmt-topbar-item-height);
    color: white;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.vmt-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.vmt-hotline-new {
    display: flex;
    align-items: center;
    gap: var(--vmt-topbar-inline-gap-tight);
    height: var(--vmt-topbar-item-height);
    line-height: 1;
    white-space: nowrap;
}

.vmt-hotline-label {
    font-weight: 500;
}

.vmt-hotline-number {
    font-weight: 700;
}

.vmt-search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--vmt-topbar-item-height);
    width: 20px;
    line-height: 1;
}

.vmt-search-icon {
    font-size: 16px;
}

.vmt-search-icon-svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.vmt-divider {
    width: 1px;
    height: 16px;
    background: white;
    opacity: 0.5;
}

.vmt-lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    height: var(--vmt-topbar-item-height);
    line-height: 1;
    white-space: nowrap;
}

.vmt-lang-text {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    font-family: var(--vmt-font-body);
}

.vmt-lang-arrow {
    font-size: 10px;
    opacity: 0.9;
    color: #ffffff;
}

/* MAIN NAVIGATION FIGMA */
.vmt-main-nav-figma {
    background: white;
    box-shadow: none;
    border-bottom: 1px solid #ececec;
    min-height: 76px;
    height: auto;
    position: relative;
    top: auto;
    z-index: auto;
}

.admin-bar .vmt-header-figma.sticky {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .vmt-header-figma.sticky {
        top: 46px;
    }
}

.vmt-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 76px;
    padding: 0 20px;
}

.vmt-logo-figma {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 76px;
    overflow: hidden;
}

.vmt-logo-figma a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 76px;
    padding: 0 6px;
    overflow: hidden;
}

.vmt-logo-figma img {
    height: 72px;
    width: auto;
    max-width: none;
    transform: translateY(4px) scale(1.1);
    transform-origin: center center;
}

.vmt-mobile-menu-btn {
    display: none;
}

.vmt-mobile-search-btn {
    display: none;
}

.vmt-nav-menu {
    flex: 1 1 640px;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.vmt-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    row-gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.vmt-mobile-menu-extra {
    display: none;
}

.vmt-nav-item {
    position: relative;
}

.vmt-nav-link-main {
    font-family: var(--vmt-font-body);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #4a4a4a;
    text-decoration: none;
    padding: 22px 0;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.vmt-nav-link-main:hover {
    color: #037c84;
}

.vmt-nav-active .vmt-nav-link-main {
    color: #037c84;
    text-shadow:
        0.7px 0 currentColor,
        -0.7px 0 currentColor;
}

.vmt-nav-link-main {
    text-shadow:
        0.7px 0 currentColor,
        -0.7px 0 currentColor;
}

.vmt-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #037c84;
}

@media (min-width: 1025px) {
    .vmt-mobile-menu-btn {
        display: none !important;
    }

    .vmt-header-figma {
        --vmt-header-logo-col: 240px;
    }

    .vmt-topbar-figma {
        height: 42px;
        font-size: 14px;
    }

    .vmt-topbar-content {
        padding: 0 var(--vmt-topbar-inline-padding);
        display: grid;
        grid-template-columns: var(--vmt-header-logo-col) 1fr auto;
        align-items: center;
    }

    .vmt-top-left {
        grid-column: 2;
        gap: var(--vmt-topbar-gap);
        min-width: 0;
        margin-left: 0;
        padding-right: 16px;
    }

    .vmt-top-right {
        grid-column: 3;
        gap: 14px;
        justify-self: end;
    }

    .vmt-brand-link,
    .vmt-nav-link,
    .vmt-hotline-new,
    .vmt-search-btn,
    .vmt-lang-selector {
        height: 42px;
        display: inline-flex;
        align-items: center;
    }

    .vmt-search-btn {
        min-width: 20px;
        padding: 0;
    }

    .vmt-divider {
        height: 18px;
    }

    .vmt-lang-selector {
        min-width: 54px;
        justify-content: flex-end;
    }

    .vmt-main-nav-figma {
        background: #ffffff !important;
        background-image: none !important;
        min-height: 76px;
    }

    .vmt-header-figma .vmt-main-nav-figma {
        background: #ffffff !important;
        background-image: none !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .vmt-nav-content {
        min-height: 76px;
        display: grid;
        grid-template-columns: var(--vmt-header-logo-col) 1fr;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }

    .vmt-logo-figma {
        grid-column: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 76px;
    }

    .vmt-logo-figma img {
        height: 76px;
        transform: translateY(4px) scale(1.1);
    }

    .vmt-nav-menu {
        grid-column: 2;
        flex: initial;
        justify-content: flex-start;
    }

    .vmt-nav-list {
        flex-wrap: nowrap;
        gap: 30px;
        justify-content: flex-start;
    }

    .vmt-nav-link-main {
        font-size: 15px;
        padding: 0;
        line-height: 68px;
    }
}

@media (max-width: 1024px) {
    .vmt-nav-content {
        gap: 14px;
    }

    .vmt-nav-menu {
        width: 100%;
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
    }

    .vmt-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        min-width: 0;
        gap: 16px 20px;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .admin-bar .vmt-header-figma,
    .admin-bar .vmt-header-figma.sticky {
        top: 0 !important;
    }

    .vmt-header-figma {
        position: sticky;
        top: 0;
        z-index: 10000;
        background: #fff;
        box-shadow: 0 8px 22px rgba(8, 28, 44, 0.08);
    }

    .vmt-topbar-figma {
        display: none;
    }

    .vmt-main-nav-figma {
        min-height: 0 !important;
        position: relative;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #ececec;
    }

    .vmt-main-nav-figma > .vmt-container {
        padding: 0 !important;
    }

    .vmt-nav-content {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 44px !important;
        align-items: center !important;
        min-height: 56px !important;
        margin: 0 !important;
        padding: 0 14px !important;
        gap: 10px !important;
    }

    .vmt-logo-figma,
    .vmt-logo-figma a {
        height: 44px !important;
    }

    .vmt-logo-figma {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin: 0 !important;
        min-width: 0 !important;
    }

    .vmt-logo-figma a {
        width: auto !important;
        justify-content: flex-start !important;
        padding: 0 !important;
    }

    .vmt-logo-figma picture {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .vmt-logo-figma img {
        height: 38px !important;
        transform: none !important;
        width: auto !important;
        max-width: min(200px, calc(100vw - 92px)) !important;
    }

    .vmt-mobile-menu-btn {
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px;
        border: 1px solid #d7dde3;
        background: #fff;
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex: 0 0 auto;
        padding: 0;
        margin: 0 0 0 auto !important;
        justify-self: end;
        align-self: center;
    }

    .vmt-mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: #253746;
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .vmt-mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .vmt-mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .vmt-mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .vmt-nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        width: auto;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 38px rgba(10, 24, 39, 0.16);
        border: 1px solid rgba(206, 214, 222, 0.9);
        backdrop-filter: blur(12px);
    }

    .vmt-main-nav-figma.active .vmt-nav-menu {
        display: block;
    }

    .vmt-nav-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        min-width: 0;
        padding: 0;
        justify-content: initial;
    }

    .vmt-nav-link-main {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 46px;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f4f5f7;
        text-align: left;
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
    }

    .vmt-nav-active::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* HERO FIGMA DESIGN */
.vmt-hero-cover {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    height: calc(100svh - 110px);
    min-height: 640px;
    overflow: hidden;
}

.vmt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

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

@media (max-width: 1024px) {
    .vmt-hero-cover {
        height: calc(100vh - 96px);
        height: calc(100svh - 96px);
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .vmt-hero-cover {
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
    }

    .vmt-hero-bg img {
        object-position: center center;
        object-fit: cover;
    }

    .vmt-slider-dots {
        bottom: 18px;
        gap: 8px;
    }

    .dot {
        width: 44px;
    }
}

.vmt-slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 69px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.vmt-decoration-bg {
    position: absolute;
    top: 714px;
    left: 0;
    width: 100%;
    height: 1598px;
    z-index: 1;
    pointer-events: none;
}

.vmt-decoration-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
}

/* Front page: keep decoration background continuous through the whole main content */
.home #main {
    position: relative;
    isolation: isolate;
}

.home #main> :not(.vmt-decoration-bg):not(.visa-popup-overlay) {
    position: relative;
    z-index: 1;
}

.home #main>.visa-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.home .vmt-decoration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    filter: saturate(0.85) brightness(1.06);
    background: url("../images/01. IMG-TRANG CHỦ/01. background-chim-trang-chu.png") center center / cover no-repeat;
    background-attachment: fixed;
    transform: none;
}

.home .vmt-decoration-bg img {
    display: none;
}

/* WHY CHOOSE US SECTION */
.vmt-why-choose {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    background: transparent;
}

.vmt-why-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Customer Images */
.vmt-customer-images {
    flex: 0 0 563px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vmt-customer-main {
    width: 100%;
    height: 250px;
    border-radius: 60px 0 0 0;
    overflow: hidden;
}

.vmt-customer-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmt-customer-grid {
    display: flex;
    gap: 16px;
    height: 250px;
}

.vmt-customer-left {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.vmt-customer-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmt-customer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.vmt-customer-top,
.vmt-customer-bottom {
    flex: 1;
    overflow: hidden;
    border-radius: 0;
}

.vmt-customer-top img,
.vmt-customer-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Content */
.vmt-why-content {
    flex: 1;
    max-width: 600px;
    padding-top: 4px;
}

.vmt-why-title {
    font-family: var(--vmt-font-heading);
    font-weight: 800;
    color: #d31725;
    margin-bottom: 34px;
    line-height: 1.05;
}

.vmt-why-line1 {
    display: block;
    font-size: 29px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.vmt-why-line2 {
    display: block;
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.vmt-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vmt-reason-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vmt-reason-icon {
    flex: 0 0 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.vmt-reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.vmt-reason-content {
    flex: 1;
    padding-top: 0;
    max-width: 520px;
}

.vmt-reason-title {
    font-family: var(--vmt-font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #037c84;
    margin: 0 0 4px;
    line-height: 1.24;
    letter-spacing: -0.01em;
}

.vmt-reason-desc {
    font-family: var(--vmt-font-body);
    font-weight: 400;
    font-size: 13px;
    color: #037c84;
    line-height: 1.38;
    margin: 0;
}

/* TOURS */
.vmt-tours {
    position: relative;
    z-index: 2;
}

.vmt-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vmt-tour-card {
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s;
}

.vmt-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vmt-tour-image-wrapper {
    height: 258px;
    position: relative;
}

.vmt-tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmt-tour-content {
    padding: 15px;
}

.vmt-tour-title {
    font-family: var(--vmt-font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    height: 44px;
    overflow: hidden;
}

.vmt-price-old {
    font-size: 12px;
    color: #515151;
    text-decoration: line-through;
}

/* MICE */
.vmt-mice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vmt-mice-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.vmt-mice-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmt-mice-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: center;
}

.vmt-mice-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* VISA */
.vmt-visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vmt-visa-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    color: inherit;
}

.vmt-visa-item:focus-visible {
    outline: 2px solid #0a8c96;
    outline-offset: 3px;
}

.vmt-visa-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.vmt-visa-item:hover .vmt-visa-bg {
    transform: scale(1.1);
}

.vmt-visa-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.12));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.vmt-visa-title {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.vmt-visa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(3, 124, 132, 0.7);
    color: #fff;
    font-family: var(--vmt-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.vmt-visa-link-icon {
    font-size: 15px;
    line-height: 1;
}

.vmt-visa-item:hover .vmt-visa-content,
.vmt-visa-item:focus-visible .vmt-visa-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vmt-visa-item:hover .vmt-visa-link,
.vmt-visa-item:focus-visible .vmt-visa-link {
    background: rgba(3, 124, 132, 0.92);
    border-color: rgba(255, 255, 255, 0.95);
}

.vmt-visa-item:hover .vmt-visa-link,
.vmt-visa-item:focus-visible .vmt-visa-link {
    transform: translateY(-1px);
}

.vmt-visa .vmt-section-header,
.vmt-visa .vmt-subtitle,
.vmt-visa .vmt-heading {
    text-align: left;
}

@media (max-width: 767px) {

    .vmt-visa .vmt-section-header,
    .vmt-visa .vmt-subtitle,
    .vmt-visa .vmt-heading {
        text-align: center;
    }
}

.vmt-visa-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.vmt-visa-actions .vmt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    line-height: 1;
    padding: 0 24px;
    font-size: 13px;
    white-space: nowrap;
}

/* Visa quick consultation modal */
.vmt-visa-quick-modal[hidden] {
    display: none;
}

.vmt-visa-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
}

.vmt-visa-quick-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 26, 0.55);
}

.vmt-visa-quick-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 480px);
    margin: 8vh auto 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    padding: 22px 20px 18px;
}

.vmt-visa-quick-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #4b4b4b;
    font-size: 24px;
    line-height: 1;
}

.vmt-visa-quick-title {
    font-family: var(--vmt-font-heading);
    color: #d31725;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.vmt-visa-quick-copy {
    color: #27515a;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vmt-visa-quick-copy p {
    margin: 0 0 8px;
}

.vmt-visa-quick-copy ul {
    margin: 0 0 8px 18px;
    padding: 0;
}

.vmt-visa-quick-copy li {
    margin: 0 0 4px;
}

.vmt-visa-quick-form {
    display: grid;
    gap: 12px;
}

.vmt-visa-quick-field {
    display: grid;
    gap: 6px;
}

.vmt-visa-quick-field span {
    color: #0a7f89;
    font-size: 14px;
    font-weight: 700;
}

.vmt-visa-quick-field input,
.vmt-visa-quick-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #c7d3d8;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 15px;
    font-family: var(--vmt-font-body);
    color: #1e1e1e;
    background: #fff;
}

.vmt-visa-quick-field input:focus,
.vmt-visa-quick-field select:focus {
    outline: none;
    border-color: #0a8c96;
    box-shadow: 0 0 0 3px rgba(10, 140, 150, 0.16);
}

.vmt-visa-quick-submit {
    width: 100%;
    margin-top: 2px;
}

.vmt-visa-quick-status {
    min-height: 20px;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #0a7f89;
}

.vmt-visa-quick-status.is-error {
    color: #c61f1f;
}

/* ABOUT */
.vmt-about {
    background: radial-gradient(circle at center, #00838c 0%, #005f66 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    margin-top: 60px;
}

.home .vmt-about::before {
    content: none;
    display: none;
}

.home .vmt-about .vmt-about-grid,
.home .vmt-about .vmt-stats-bar {
    position: relative;
    z-index: 2;
}

.vmt-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-bottom: 80px;
}

.vmt-about-media {
    flex: 1;
    position: relative;
}

.vmt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.vmt-about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vmt-subtitle-light {
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.vmt-heading-light {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--vmt-font-heading);
}

.vmt-link-light {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    min-height: 40px;
    min-width: 168px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #1a97a1 0%, #0a7f89 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    align-self: flex-end;
}

.vmt-link-light:hover {
    filter: brightness(1.06);
    color: #fff;
}

.vmt-link-light .vmt-link-icon {
    font-size: 20px;
    line-height: 1;
    transform: translateY(-1px);
}

.vmt-about .vmt-stats-bar {
    background: #ffffff;
    width: calc(100% - 160px);
    max-width: 980px;
    margin: 0 auto;
    transform: translateY(46%);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    padding: 24px 28px;
    position: relative;
    z-index: 10;
}

.vmt-about .vmt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    text-align: center;
    align-items: center;
}

.vmt-about .vmt-stat-item {
    padding: 6px 24px;
    position: relative;
}

.vmt-about .vmt-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #d9d9d9;
    z-index: 0;
}

.vmt-about .vmt-stat-item>* {
    position: relative;
    z-index: 1;
}

.vmt-about .vmt-stat-num {
    display: block;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    color: #0a8c96;
    font-family: var(--vmt-font-heading);
    margin-bottom: 10px;
}

.vmt-about .vmt-stat-label {
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0a8c96;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* PARTNERS */
.vmt-partners {
    padding-top: 60px;
    padding-bottom: 60px;
}

.vmt-partners-block {
    position: relative;
    padding: 20px 40px;
    border: 1px dotted #00838c;
    /* Dotted border container */
    margin-bottom: 30px;
    border-radius: 10px;
}

.vmt-divider-line {
    height: 1px;
    background: #eee;
    margin: 40px 0;
    display: none;
    /* Hidden based on dotted border design? Or keeping separation */
}

.vmt-partners-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    top: -35px;
    /* Pull header up to intersect border */
    background: #fff;
    display: inline-block;
    padding: 0 20px;
    left: 50%;
    transform: translateX(-50%);
}

.vmt-heading-partner {
    color: var(--vmt-primary);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.vmt-subheading-partner {
    font-weight: 300;
    font-size: 18px;
    color: var(--vmt-primary);
    text-transform: none;
    margin-left: 10px;
    border-left: 1px solid var(--vmt-primary);
    padding-left: 10px;
}

.vmt-partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    /* Carousel style */
    overflow-x: auto;
}

.vmt-partners-grid img {
    max-height: 50px;
    width: auto;
    filter: none;
    /* No grayscale per new design */
}

.vmt-partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--vmt-primary);
    color: var(--vmt-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmt-prev {
    left: 10px;
}

.vmt-next {
    right: 10px;
}

/* FOOTER */
.vmt-site-footer {
    background: #006064;
    /* Dark Teal */
    color: #fff;
    padding: 60px 0 20px;
    font-size: 13px;
    /* Smaller text as requested */
}

/* FOOTER CONTENT */
.vmt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1.3fr;
    /* 4 Columns */
    gap: 30px;
    margin-bottom: 40px;
}

.vmt-footer-logo {
    margin-bottom: 15px;
    max-width: 150px;
}

.vmt-company-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.4;
}

.vmt-license-info,
.vmt-contact-info,
.vmt-footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.vmt-license-info,
.vmt-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.vmt-license-info p,
.vmt-contact-info p {
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.vmt-footer-hotline {
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.vmt-footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.vmt-footer-links li {
    margin-bottom: 0;
}

.vmt-footer-links a {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
}

.vmt-footer-links a:hover {
    text-decoration: underline;
}

/* NEWSLETTER FORM */
.vmt-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vmt-form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    outline: none;
    font-size: 13px;
}

.vmt-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.vmt-btn-submit {
    background: #fff;
    color: #006064;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.vmt-btn-submit:hover {
    background: #eee;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .vmt-tours-grid,
    .vmt-mice-grid,
    .vmt-visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 Grid on Tablet */
    }

    .vmt-intro-grid,
    .vmt-about-grid {
        flex-direction: column;
    }

    .vmt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vmt-footer-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .vmt-tours-grid,
    .vmt-mice-grid,
    .vmt-visa-grid,
    .vmt-stats-grid {
        grid-template-columns: 1fr;
    }
}

.vmt-about {
    margin-top: 0;
    padding-bottom: 40px;
}


/* TOURS FIGMA DESIGN */
.vmt-tours-figma {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    background: transparent;
}

.vmt-tour-header {
    text-align: center;
    margin-bottom: 60px;
}

.vmt-tour-subtitle {
    font-family: var(--vmt-font-heading);
    font-weight: 400;
    font-size: 16px;
    color: #037c84;
    margin-bottom: 8px;
}

.vmt-tour-title {
    font-family: var(--vmt-font-heading);
    font-weight: 700;
    font-size: 36px;
    color: #d31725;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.vmt-tour-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.vmt-tour-tab {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 20px;
    font-family: var(--vmt-font-heading);
    font-weight: 500;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vmt-tour-tab.active {
    background: #037c84;
    color: white;
    border-color: #037c84;
}

.vmt-tour-tab:hover {
    background: #037c84;
    color: white;
    border-color: #037c84;
}

.vmt-tours-grid-figma {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vmt-tour-card-figma {
    background: white;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmt-tour-card-figma:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vmt-tour-image {
    position: relative;
    height: 264px;
    overflow: hidden;
}

.vmt-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vmt-tour-card-figma:hover .vmt-tour-image img {
    transform: scale(1.05);
}

.vmt-tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 2px;
    font-family: var(--vmt-font-body);
    font-weight: 400;
    font-size: 12px;
    color: white;
    z-index: 2;
}

.vmt-tour-badge-2 {
    position: absolute;
    top: 45px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 2px;
    font-family: var(--vmt-font-body);
    font-weight: 400;
    font-size: 12px;
    color: white;
    z-index: 2;
}

.vmt-tour-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 2;
}

.vmt-tour-favorite:hover {
    background: #d31725;
    color: white;
}

.vmt-tour-content-figma {
    padding: 20px 15px;
    border-radius: 0 0 10px 10px;
}

/* FOOTER REDESIGN */
.vmt-site-footer {
    background: radial-gradient(circle at 65% 35%, rgba(17, 151, 168, 0.35), rgba(3, 115, 122, 0.95) 55%, #04676f 100%);
    color: #fff;
    padding: 68px 0 0;
    font-size: 15px;
}

.vmt-footer-grid {
    grid-template-columns: 1.45fr 1.2fr 0.9fr 1.15fr;
    gap: 38px;
    margin-bottom: 34px;
}

.vmt-footer-logo {
    max-width: 250px;
    width: 100%;
    margin-bottom: 24px;
}

.vmt-company-name {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.vmt-license-info,
.vmt-contact-info,
.vmt-footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.vmt-license-info p,
.vmt-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
}

.vmt-footer-hotline {
    font-size: 18px;
    line-height: 1.3;
}

.vmt-footer-icon {
    font-size: 15px;
    line-height: 1.2;
    width: 18px;
    display: inline-flex;
    justify-content: center;
    margin-top: 2px;
}

.vmt-footer-heading {
    font-size: 18px;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.vmt-footer-links li {
    margin-bottom: 0;
}

.vmt-footer-links a {
    font-size: 15px;
    opacity: 0.95;
}

.vmt-newsletter-form {
    gap: 12px;
}

.vmt-form-input {
    min-height: 47px;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.vmt-btn-submit {
    margin-top: 6px;
    min-height: 48px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #ff2a2a 0%, #c90000 100%);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.26);
}

.vmt-btn-submit:hover {
    filter: brightness(1.05);
}

.vmt-footer-social {
    text-align: center;
    padding: 6px 0 24px;
}

.vmt-footer-social h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.vmt-footer-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.vmt-footer-social-list a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.vmt-footer-social-list a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ABOUT STATS CARD - keep rounded/floating style */
.vmt-about .vmt-stats-bar {
    background: #ffffff;
    width: calc(100% - 160px);
    max-width: 980px;
    margin: 0 auto;
    transform: translateY(46%);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    padding: 24px 28px;
    position: relative;
    z-index: 10;
}

.vmt-about .vmt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    text-align: center;
    align-items: center;
}

.vmt-about .vmt-stat-item {
    padding: 6px 18px;
    position: relative;
}

.vmt-about .vmt-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: #d9d9d9;
}

.vmt-about .vmt-stat-num {
    display: block;
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    color: #0a8c96;
    font-family: var(--vmt-font-heading);
    margin-bottom: 10px;
}

.vmt-about .vmt-stat-label {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0a8c96;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.vmt-tour-title-figma {
    font-family: var(--vmt-font-body);
    font-weight: 700;
    font-size: 14px;
    color: #037c84;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vmt-tour-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.vmt-tour-duration,
.vmt-tour-departure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--vmt-font-body);
    font-size: 10px;
    color: #515151;
}

.vmt-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.vmt-tour-pricing {
    margin-bottom: 20px;
}

.vmt-price-old {
    font-family: var(--vmt-font-body);
    font-size: 12px;
    color: #515151;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.vmt-price-current {
    font-family: var(--vmt-font-body);
    font-weight: 700;
    font-size: 22px;
    color: #d31725;
}

.vmt-tour-cta {
    width: 100%;
    background: #d31725;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: var(--vmt-font-body);
    font-weight: 700;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vmt-tour-cta:hover {
    background: #b8141f;
}

.vmt-cta-arrow {
    flex-shrink: 0;
}

.vmt-tours-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.vmt-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.vmt-nav-arrow:hover {
    background: #037c84;
    color: white;
    border-color: #037c84;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    /* Hero Mobile */
    .vmt-hero-cover {
        height: 400px;
    }

    .vmt-why-grid {
        flex-direction: column;
        gap: 40px;
    }

    .vmt-customer-images {
        flex: none;
        width: 100%;
    }

    .vmt-why-line1 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .vmt-why-line2 {
        font-size: 32px;
    }

    .vmt-why-title {
        margin-bottom: 32px;
    }

    .vmt-reasons-list {
        gap: 24px;
    }

    .vmt-reason-item {
        gap: 12px;
    }

    .vmt-reason-icon {
        flex: 0 0 48px;
        height: 48px;
    }

    .vmt-reason-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .vmt-reason-desc {
        font-size: 13px;
        line-height: 1.42;
    }

    /* Tours Mobile */
    .vmt-tours-grid-figma {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .vmt-tour-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .vmt-tour-tab {
        flex: 1;
        min-width: 120px;
    }

    .vmt-tour-title {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet styles */
    .vmt-tours-grid-figma {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmt-why-grid {
        gap: 40px;
    }

    .vmt-customer-images {
        flex: 0 0 400px;
    }

    .vmt-why-title {
        margin-bottom: 42px;
    }

    .vmt-why-line1 {
        font-size: 24px;
    }

    .vmt-why-line2 {
        font-size: 40px;
    }

    .vmt-reasons-list {
        gap: 30px;
    }
}

/* =================================
   TESTIMONIALS / FEEDBACK SECTION
   ================================= */

.vmt-testimonials {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.vmt-testimonials-header {
    margin-bottom: 50px;
}

.vmt-testi-icon svg {
    fill: #00838c;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.vmt-testi-subtitle {
    font-family: var(--vmt-font-body);
    font-size: 18px;
    color: #00838c;
    margin-bottom: 5px;
    font-weight: 400;
}

.vmt-testi-title {
    font-family: var(--vmt-font-heading);
    font-weight: 800;
    font-size: 36px;
    color: #d31725;
    text-transform: uppercase;
    line-height: 1.2;
}

.vmt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vmt-testi-card {
    display: flex;
    text-align: left;
    gap: 10px;
}

.vmt-testi-img {
    flex: 0 0 45%;
    height: 300px;
    /* Tall vertical image */
    border-radius: 10px;
    overflow: hidden;
}

.vmt-testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmt-testi-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vmt-testi-quote-box {
    background: #e0f7fa;
    /* Light Blue */
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    color: #515151;
    line-height: 1.5;
    position: relative;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 120px;
    /* Align heights */
}

/* Triangle for speech bubble */
.vmt-testi-quote-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #e0f7fa transparent;
    display: block;
    width: 0;
}

.vmt-testi-name {
    color: #00838c;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.vmt-testi-role {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.3;
}

.vmt-testi-stars .vmt-star {
    color: #ffc107;
    font-size: 14px;
}

.vmt-testi-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.vmt-testi-pagination .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.vmt-testi-pagination .dot.active {
    background: #00838c;
}

/* RESPONSIVE TESTIMONIALS */
@media (max-width: 1024px) {
    .vmt-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vmt-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .vmt-testi-card {
        flex-direction: row;
        /* Keep side-by-side on mobile if fitting, or column */
    }
}

/* =================================
   NEWS SECTION
   ================================= */

.vmt-news {
    padding: 74px 0 84px;
    background: #d9ebed;
}

.vmt-news-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 26px;
}

.vmt-news-heading {
    grid-column: 2;
    text-align: center;
}

.vmt-news-subtitle {
    display: none;
}

.vmt-news-title {
    font-family: var(--vmt-font-heading);
    font-weight: 800;
    font-size: 52px;
    color: #d31725;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
}

.vmt-news-more {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #037c84;
    text-decoration: none;
    font-family: var(--vmt-font-body);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid #037c84;
}

.vmt-news-more:hover {
    color: #fff;
    background: #037c84;
    transform: translateX(2px);
}

.vmt-news-more svg {
    width: 22px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.vmt-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    --vmt-news-right-card-height: 252px;
    --vmt-news-right-gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.vmt-news-featured {
    background: #f2f4f5;
    border-radius: 12px;
    border: 1px solid #dce7ea;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(7, 66, 71, 0.08);
    padding: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc((var(--vmt-news-right-card-height) * 2) + var(--vmt-news-right-gap));
    display: flex;
    flex-direction: column;
}

.vmt-news-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(7, 66, 71, 0.14);
}

.vmt-news-grid>.vmt-news-featured .vmt-news-image {
    position: relative;
    display: block;
    height: 330px !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
}

.vmt-news-grid>.vmt-news-featured .vmt-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    transition: transform 0.3s ease;
}

.vmt-news-featured:hover .vmt-news-image img {
    transform: scale(1.05);
}

.vmt-news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00838c;
    /* Teal Badge */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--vmt-font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.vmt-news-featured .vmt-news-content {
    padding: 10px 4px 2px;
    flex: 1 1 auto;
    display: grid;
    align-content: start;
    gap: 8px;
}

.vmt-news-featured .vmt-news-article-title {
    font-family: var(--vmt-font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #2f3437;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vmt-news-excerpt {
    font-family: var(--vmt-font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #4a4f53;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vmt-news-featured .vmt-news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.vmt-news-featured .vmt-news-meta {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.vmt-news-meta {
    display: flex;
    gap: 28px;
    align-items: center;
}

.vmt-news-date,
.vmt-news-time {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--vmt-font-body);
    font-size: 14px;
    color: #60666c;
}

.vmt-news-date svg,
.vmt-news-time svg {
    width: 18px;
    height: 18px;
    fill: #60666c;
}

.vmt-news-regular {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vmt-news-right-gap);
    align-content: start;
    grid-auto-rows: minmax(0, auto);
}

.vmt-news-card {
    background: #f2f4f5;
    border-radius: 12px;
    border: 1px solid #dce7ea;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(7, 66, 71, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    min-height: var(--vmt-news-right-card-height);
    height: var(--vmt-news-right-card-height);
    display: flex;
    flex-direction: column;
}

.vmt-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(7, 66, 71, 0.14);
    border-color: #bfd5da;
}

.vmt-news-card .vmt-news-image {
    position: relative;
    display: block;
    height: 136px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.vmt-news-card .vmt-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vmt-news-card:hover .vmt-news-image img {
    transform: scale(1.05);
}

.vmt-news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00838c;
    /* Teal Badge */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--vmt-font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.vmt-news-card .vmt-news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00838c;
    /* Teal Badge */
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-family: var(--vmt-font-body);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.vmt-news-card .vmt-news-content {
    padding: 8px 0 0;
    flex: 1 1 auto;
}

.vmt-news-card .vmt-news-article-title {
    font-family: var(--vmt-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.28;
    color: #2f3437;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vmt-news-article-title a {
    color: inherit;
    text-decoration: none;
}

.vmt-news-article-title a:hover {
    color: #037c84;
}

/* Mobile Responsive for Testimonials & News */
@media (max-width: 768px) {
    .vmt-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vmt-testimonials-title,
    .vmt-news-title {
        font-size: 34px;
    }

    .vmt-news {
        padding: 48px 0 56px;
    }

    .vmt-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vmt-news-regular {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vmt-news-card {
        padding: 12px;
        min-height: 0;
        height: auto;
    }

    .vmt-news-card .vmt-news-image {
        height: 160px;
    }

    .vmt-news-featured .vmt-news-image {
        min-height: 0;
        height: 260px;
        max-height: none;
    }

    .vmt-news-featured .vmt-news-article-title {
        font-size: 24px;
    }

    .vmt-news-excerpt {
        font-size: 15px;
    }

    .vmt-news-card .vmt-news-article-title {
        font-size: 18px;
    }

    .vmt-news-header {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        margin-bottom: 18px;
    }

    .vmt-news-heading,
    .vmt-news-more {
        grid-column: 1;
        justify-self: center;
    }

    .vmt-news-more {
        font-size: 15px;
        padding: 8px 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .vmt-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmt-testimonials-title,
    .vmt-news-title {
        font-size: 40px;
    }

    .vmt-news-grid {
        grid-template-columns: 1fr;
    }

    .vmt-news-featured {
        height: auto;
    }

    .vmt-news-card .vmt-news-image {
        height: 200px;
    }

    .vmt-news-card {
        height: auto;
        min-height: 0;
    }

    .vmt-news-card .vmt-news-article-title {
        font-size: 18px;
    }

    .vmt-news-featured .vmt-news-article-title {
        font-size: 26px;
    }

    .vmt-news-excerpt {
        font-size: 18px;
    }

    .vmt-news-featured .vmt-news-image {
        min-height: 0;
        height: 420px;
        max-height: none;
    }
}

/* =================================
   FOOTER SECTION
   ================================= */

.vmt-footer,
#chân_trang {
    background: linear-gradient(135deg, #037c84 0%, #025d63 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.vmt-footer::before,
#chân_trang::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.vmt-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.vmt-footer-company {
    max-width: 400px;
}

.vmt-footer-logo {
    max-height: 80px;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

.vmt-footer-tagline {
    font-family: var(--vmt-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.vmt-footer-contact {
    margin-bottom: 25px;
}

.vmt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--vmt-font-body);
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.vmt-contact-item svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
}

.vmt-contact-item strong {
    color: #ffffff;
    font-weight: 700;
}

.vmt-footer-license {
    margin-top: 20px;
}

.vmt-footer-license p {
    font-family: var(--vmt-font-body);
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.vmt-footer-title {
    font-family: var(--vmt-font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmt-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmt-footer-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.vmt-footer-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.vmt-footer-list a {
    font-family: var(--vmt-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.vmt-footer-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.vmt-footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.vmt-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.vmt-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.vmt-social-link svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.vmt-footer-newsletter {
    max-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.vmt-newsletter-text {
    font-family: var(--vmt-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmt-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.vmt-newsletter-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--vmt-font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.vmt-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.vmt-newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.vmt-newsletter-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #037c84;
    font-family: var(--vmt-font-heading);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vmt-newsletter-btn:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vmt-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #0e8e97;
    position: relative;
    z-index: 1;
}

.vmt-footer-bottom>.vmt-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.vmt-footer-bottom p,
.vmt-footer-copyright p {
    font-family: var(--vmt-font-body);
    font-size: 14px;
    color: #ecfbfe;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.vmt-footer-bottom-links {
    display: flex;
    gap: 25px;
}

.vmt-footer-bottom-links a {
    font-family: var(--vmt-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vmt-footer-bottom-links a:hover {
    color: #ffffff;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {

    .vmt-footer,
    #chân_trang {
        padding: 40px 0 20px;
    }

    .vmt-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .vmt-footer-company {
        max-width: 100%;
        text-align: center;
    }

    .vmt-footer-social {
        justify-content: center;
    }

    .vmt-footer-newsletter {
        max-width: 100%;
    }

    .vmt-newsletter-form {
        gap: 12px;
    }

    .vmt-newsletter-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .vmt-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vmt-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .vmt-footer-main {
        grid-template-columns: 1.5fr 1fr 1.2fr;
        gap: 40px;
    }

    .vmt-footer-newsletter {
        max-width: 100%;
    }

    .vmt-contact-item {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

   
/* ============================================
   GLOBAL COMPONENTS STYLES
   ============================================ */

/* Chat Widget */
.vmt-chat-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vmt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #0e8e97;
}

.vmt-footer-bottom .vmt-container {
    display: flex;
    justify-content: center;
}

.vmt-footer-bottom p {
    margin: 0;
    padding: 8px 0;
    color: #ecfbfe;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}

.vmt-chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.vmt-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.vmt-chat-btn img,
.vmt-chat-btn svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Disable back-to-top button */
.vmt-back-to-top {
    display: none !important;
}

/* ============================================
   FOOTER FINAL (match homepage design)
   ============================================ */
.vmt-site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #047983 0%, #01666f 100%);
    color: #fff;
    padding: 26px 0 0;
    border-radius: 8px 8px 0 0;
    max-width: none;
    margin: 0;
}

.vmt-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/gioi_thieu_front_page.png") center 62% / min(94%, 1552px) auto no-repeat;
    opacity: 0.15;
    filter: grayscale(1) saturate(0) brightness(2.4) contrast(0.82);
    pointer-events: none;
}

.vmt-site-footer .vmt-container,
.vmt-site-footer .vmt-footer-bottom {
    position: relative;
    z-index: 1;
}

.vmt-site-footer .vmt-container {
    max-width: 1280px;
    padding-left: 28px;
    padding-right: 28px;
}

.vmt-site-footer .vmt-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.2fr 1fr 1.15fr;
    gap: 24px;
    margin-bottom: 12px;
}

.vmt-site-footer .vmt-footer-logo {
    width: 100%;
    max-width: 260px;
    margin-bottom: 12px;
}

.vmt-site-footer .vmt-company-name {
    margin: 18px 0 10px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.vmt-site-footer .vmt-license-info p,
.vmt-site-footer .vmt-contact-info p {
    margin: 0 0 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}

.vmt-site-footer .vmt-contact-info p strong {
    color: #ffffff;
}

.vmt-site-footer .vmt-contact-value {
    color: #ffffff;
    font-weight: 800;
}

.vmt-site-footer .vmt-footer-hotline {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.vmt-site-footer .vmt-footer-icon {
    width: 18px;
    display: inline-flex;
    justify-content: center;
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.2;
    color: #ffffff;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

.vmt-site-footer .vmt-footer-heading {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.vmt-site-footer .vmt-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmt-site-footer .vmt-footer-links li {
    margin-bottom: 6px;
}

.vmt-site-footer .vmt-footer-links a {
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.vmt-site-footer .vmt-footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.vmt-site-footer .vmt-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vmt-site-footer .vmt-form-input {
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: #ffffff;
    color: #1f3b3d;
    font-size: 16px;
    padding: 0 16px;
}

.vmt-site-footer .vmt-form-input::placeholder {
    color: #7a8b8f;
}

.vmt-site-footer .vmt-btn-submit {
    margin-top: 2px;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #ff2929 0%, #c60000 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.vmt-site-footer .vmt-btn-submit:hover {
    filter: brightness(1.05);
}

.vmt-site-footer .vmt-footer-social-inline {
    margin-top: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 22px;
}

.vmt-site-footer .vmt-footer-social-global {
    margin-top: 8px;
    margin-bottom: 14px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: min(340px, 100%);
}

.vmt-site-footer .vmt-footer-social-global h4 {
    margin: 0;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.2;
}

.vmt-site-footer .vmt-footer-social-global .vmt-footer-social-list {
    justify-content: flex-start;
}

.vmt-site-footer .vmt-footer-social-inline h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    min-width: 120px;
}

.vmt-site-footer .vmt-footer-social-inline h4 span {
    display: block;
}

.vmt-site-footer .vmt-footer-social-inline h4 span+span {
    margin-top: 3px;
}

.vmt-site-footer .vmt-footer-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.vmt-site-footer .vmt-footer-social-list a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.vmt-site-footer .vmt-footer-social-list a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.vmt-site-footer .vmt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #0b8690;
    margin-top: 0;
}

.vmt-site-footer .vmt-footer-bottom .vmt-container {
    display: flex;
    justify-content: center;
}

.vmt-site-footer .vmt-footer-bottom p {
    margin: 0;
    padding: 8px 0;
    text-align: center;
    color: #ebfbfd;
    font-size: 17px;
    font-family: var(--vmt-font-body);
}

@media (max-width: 1024px) {
    .vmt-site-footer {
        border-radius: 8px 8px 0 0;
        max-width: none;
    }

    .vmt-site-footer .vmt-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

@media (max-width: 767px) {
    .vmt-site-footer {
        padding-top: 36px;
    }

    .vmt-site-footer .vmt-footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vmt-site-footer .vmt-company-name {
        margin-top: 8px;
        font-size: 16px;
    }

    .vmt-site-footer .vmt-footer-heading {
        font-size: 14px;
    }

    .vmt-site-footer .vmt-footer-social-inline {
        display: block;
    }

    .vmt-site-footer .vmt-footer-social-inline h4 {
        text-transform: none;
        min-width: 0;
        margin-bottom: 8px;
    }

    .vmt-site-footer .vmt-footer-social-inline h4 span {
        display: inline;
    }

    .vmt-site-footer .vmt-footer-social-inline h4 span+span {
        margin-top: 0;
        margin-left: 4px;
    }

    .vmt-site-footer .vmt-footer-social-global {
        gap: 8px;
    }

    .vmt-site-footer .vmt-footer-social-global h4 {
        font-size: 16px;
    }

    .vmt-site-footer .vmt-license-info p,
    .vmt-site-footer .vmt-contact-info p,
    .vmt-site-footer .vmt-footer-links a,
    .vmt-site-footer .vmt-form-input,
    .vmt-site-footer .vmt-btn-submit,
    .vmt-site-footer .vmt-footer-hotline,
    .vmt-site-footer .vmt-footer-social-inline h4 {
        font-size: 13px;
    }

    .vmt-site-footer .vmt-btn-submit {
        min-height: 42px;
    }
}

/* About stats: content-width columns (not equal split) */
.vmt-about .vmt-stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    text-align: center;
}

.vmt-about .vmt-stat-item {
    flex: 0 0 auto;
    padding: 6px 34px;
    position: relative;
}

.vmt-about .vmt-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: #d1d1d1;
    z-index: 0;
}

.vmt-about .vmt-stat-item>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .vmt-about .vmt-stats-grid {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .vmt-about .vmt-stat-item {
        width: 50%;
        padding: 10px 18px;
    }

    .vmt-about .vmt-stat-item::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .vmt-about .vmt-stat-item {
        width: 100%;
    }

    .vmt-link-light {
        align-self: flex-start;
    }
}

/* Force homepage news section to use UTM fonts */
.vmt-news .vmt-news-subtitle,
.vmt-news .vmt-news-more,
.vmt-news .vmt-news-category,
.vmt-news .vmt-news-excerpt,
.vmt-news .vmt-news-date,
.vmt-news .vmt-news-time,
.vmt-news .vmt-news-article-title,
.vmt-news .vmt-news-article-title a {
    font-family: var(--vmt-font-body);
}

.vmt-news .vmt-news-title {
    font-family: var(--vmt-font-heading);
}

/* Global heading scale: unify H1/H2 styles across site sections */
:root {
    --vmt-site-h1-size: clamp(34px, 3.1vw, 44px);
    --vmt-site-h1-line: 1.12;
    --vmt-site-h2-size: clamp(18px, 1.7vw, 24px);
    --vmt-site-h2-line: 1.22;
}

h1,
.h1,
.vmt-heading,
.vmt-heading-light,
.vmt-news-title,
.vmt-testi-title,
.vmt-tour-title,
.vmt-tour-promo-title,
.vmt-why-line2,
.vmt-heading-partner {
    font-family: var(--vmt-font-heading) !important;
    font-size: var(--vmt-site-h1-size) !important;
    line-height: var(--vmt-site-h1-line) !important;
}

h2,
.h2,
.vmt-subtitle,
.vmt-subtitle-light,
.vmt-news-subtitle,
.vmt-testi-subtitle,
.vmt-tour-subtitle,
.vmt-tour-promo-subtitle,
.vmt-why-line1 {
    font-family: var(--vmt-font-heading) !important;
    font-size: var(--vmt-site-h2-size) !important;
    line-height: var(--vmt-site-h2-line) !important;
}

/* Remove white seam before footer across templates */
#main {
    padding-bottom: 0 !important;
}

#main> :last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#main+.vmt-site-footer {
    margin-top: 0 !important;
    transform: translateY(-1px);
}

/* Hard fix: remove seam before footer when chat-widget sits between main and footer */
body>main,
#main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body>main> :last-child,
#main> :last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body>main+.vmt-site-footer,
body>main+.vmt-chat-widget+.vmt-site-footer,
#main+.vmt-site-footer,
#main+.vmt-chat-widget+.vmt-site-footer {
    margin-top: 0 !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .vmt-why-choose {
        padding: 72px 0 56px;
    }

    .vmt-why-grid {
        gap: 28px;
        padding: 0 14px;
    }

    .vmt-customer-images {
        width: min(100%, 540px);
        margin: 0 auto;
        gap: 12px;
    }

    .vmt-customer-main {
        height: auto;
        aspect-ratio: 1.28 / 1;
        border-radius: 38px 0 0 0;
    }

    .vmt-customer-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        height: auto;
        align-items: stretch;
    }

    .vmt-customer-left {
        width: 100%;
        min-width: 0;
        aspect-ratio: 1 / 1;
    }

    .vmt-customer-right {
        width: 100%;
        min-width: 0;
        gap: 12px;
    }

    .vmt-customer-top,
    .vmt-customer-bottom {
        min-height: 0;
        width: 100%;
        aspect-ratio: 2 / 1;
    }

    .vmt-customer-main img,
    .vmt-customer-left img,
    .vmt-customer-top img,
    .vmt-customer-bottom img {
        object-position: center center;
    }

    .vmt-why-content {
        max-width: none;
        width: 100%;
        padding-top: 0;
    }

    .vmt-why-title {
        margin-bottom: 22px;
    }

    .vmt-reason-item {
        gap: 10px;
        align-items: flex-start;
    }

    .vmt-reason-icon {
        flex: 0 0 44px;
        height: 44px;
        margin-top: 2px;
    }

    .vmt-reason-content {
        max-width: none;
    }

    .vmt-reason-title {
        font-size: 14px;
        line-height: 1.14;
        margin-bottom: 6px;
        letter-spacing: -0.01em;
    }

    .vmt-reason-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .vmt-why-line1 {
        font-size: 11px !important;
        line-height: 1.08 !important;
        margin-bottom: 3px;
        letter-spacing: -0.01em;
    }

    .vmt-why-line2 {
        font-size: 14px !important;
        line-height: 1.04 !important;
        letter-spacing: -0.02em;
        text-wrap: balance;
    }
}

@media (max-width: 820px) {
    /* Final mobile-nav lock so later responsive blocks cannot break the hamburger header. */
    .vmt-topbar-figma {
        display: block !important;
        height: auto;
        min-height: 34px;
        background: linear-gradient(180deg, #cf0d1b 0%, #b70815 100%) !important;
        color: #fff;
    }

    .vmt-header-figma {
        position: sticky;
        top: 0;
        z-index: 10000;
        background: #fff;
    }

    .vmt-topbar-content {
        min-height: 34px;
        padding: 6px 14px;
        justify-content: center;
    }

    .vmt-top-left {
        width: 100%;
        justify-content: center;
        gap: 0;
    }

    .vmt-brand-dropdown,
    .vmt-nav-link,
    .vmt-top-right {
        display: none !important;
    }

    .vmt-hotline-new {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        height: auto;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .vmt-hotline-label {
        font-weight: 700;
    }

    .vmt-main-nav-figma {
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-bottom: 1px solid #ececec;
    }

    .vmt-main-nav-figma > .vmt-container {
        padding: 0 !important;
    }

    .vmt-nav-content {
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) 44px !important;
        align-items: center !important;
        min-height: 56px !important;
        padding: 0 14px !important;
        gap: 10px !important;
    }

    .vmt-logo-figma,
    .vmt-logo-figma a {
        height: 44px !important;
    }

    .vmt-logo-figma {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        grid-column: 2;
    }

    .vmt-logo-figma a {
        width: auto !important;
        padding: 0 !important;
        justify-content: center !important;
    }

    .vmt-logo-figma img {
        height: 38px !important;
        width: auto !important;
        max-width: min(220px, calc(100vw - 128px)) !important;
        transform: none !important;
        filter: none;
    }

    .vmt-mobile-menu-btn {
        display: inline-flex !important;
        width: 40px !important;
        height: 40px !important;
        margin: 0 0 0 auto !important;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: transparent;
        align-items: center;
        justify-content: center;
        justify-self: start;
        align-self: center;
        flex-direction: column;
        gap: 5px;
        grid-column: 1;
    }

    .vmt-mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: #0a7e83;
        border-radius: 999px;
    }

    .vmt-mobile-search-btn {
        display: inline-flex !important;
        grid-column: 3;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        justify-self: end;
        align-self: center;
        border: 0;
        border-radius: 12px;
        background: transparent;
        color: #0a7e83;
    }

    .vmt-mobile-search-btn .vmt-search-icon-svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }

    .vmt-nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none !important;
        width: auto !important;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 38px rgba(10, 24, 39, 0.16);
        border: 1px solid rgba(206, 214, 222, 0.9);
        backdrop-filter: blur(12px);
    }

    .vmt-main-nav-figma.active .vmt-nav-menu {
        display: block !important;
    }

    .vmt-nav-list {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        padding: 0;
        justify-content: initial;
    }

    .vmt-nav-link-main {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 46px;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f4f5f7;
        font-size: 13px;
        line-height: 1.2;
        text-align: left;
        white-space: normal;
    }

    .vmt-mobile-menu-extra {
        display: block;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(206, 214, 222, 0.9);
    }

    .vmt-mobile-menu-extra-title {
        margin: 0 0 10px;
        color: #6b7280;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vmt-mobile-menu-extra-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vmt-mobile-menu-extra-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 46px;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f4f5f7;
        color: #3a3a3a;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 600;
        text-align: left;
    }
}
