/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', system-ui, sans-serif;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

:root {
    --red: #e11d48;
    --red-dark: #be123c;
    --red-light: #fff0f3;
    --green: #00c96b;
    --green-dark: #00a857;
    --navy: #0f172a;
    --slate: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 12px 32px rgba(0, 0, 0, .06);
}

.vts-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── TYPOGRAPHY ── */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(225, 29, 72, .08);
    padding: .32rem 1.1rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.85rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    color: var(--slate);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-top: .65rem;
}

.section-sub-narrow {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub-client {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

:focus-visible {
    outline: 3px solid rgba(225, 29, 72, .35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ════════════════════
       NAVBAR
    ════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s, border-color .35s, box-shadow .35s;
    padding: .85rem 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-color: var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vts-logo-svg {
    display: block;
    height: 38px;
    width: auto;
}

.logo-white {
    display: block;
}

.logo-dark {
    display: none;
}

#navbar.scrolled .logo-white {
    display: none;
}

#navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: auto;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    padding: .52rem .95rem;
    border-radius: 7px;
    transition: all .18s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

#navbar.scrolled .nav-link {
    color: var(--slate);
}

#navbar.scrolled .nav-link:hover {
    color: var(--navy);
    background: #f1f5f9;
}

.nav-link svg {
    transition: transform .2s;
}

.nav-link:hover svg {
    transform: rotate(180deg);
}

.nav-enquiry {
    border: 1.5px solid rgba(255, 255, 255, .7);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    padding: .48rem 1.2rem;
    font-size: .9rem;
    transition: all .3s;
    font-family: 'Roboto', sans-serif;
    background: rgba(255, 255, 255, .1);
    white-space: nowrap;
}

.nav-enquiry:hover {
    background: rgba(255, 255, 255, .22);
}

#navbar.scrolled .nav-enquiry {
    background: var(--red);
    border-color: var(--red);
    color: #fff !important;
}

#navbar.scrolled .nav-enquiry:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* Dropdown — fixed hover gap + click friendly */
/* FOUC-safe dropdown defaults are also injected inline in every HTML <head>. */
.dropdown-wrap {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.dropdown-wrap::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 16px;
    z-index: 98;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 286px;
    padding: .72rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, .9);
    border-top: 1px solid rgba(226, 232, 240, .9);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-wrap:hover .dropdown-menu,
.dropdown-wrap:focus-within .dropdown-menu,
.dropdown-wrap.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-wrap:hover .nav-link svg,
.dropdown-wrap:focus-within .nav-link svg,
.dropdown-wrap.open .nav-link svg {
    transform: rotate(180deg);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: .72rem .82rem;
    border-radius: 12px;
    transition: background .15s ease, transform .15s ease;
    cursor: pointer;
}

.drop-item:hover {
    background: var(--bg);
    transform: translateX(2px);
}

.drop-ico {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red-light), #fff);
    border: 1px solid rgba(225, 29, 72, .1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.drop-label {
    font-size: .86rem;
    font-weight: 800;
    color: var(--navy);
}

.drop-sub {
    font-size: .74rem;
    color: var(--slate);
    margin-top: 2px;
    line-height: 1.35;
}

.drop-divider {
    height: 1px;
    background: var(--border);
    margin: .45rem .2rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

#navbar.scrolled .hamburger span {
    background: var(--navy);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════
       MOBILE DRAWER — premium card style
    ════════════════════ */
/* Load-safe mobile drawer defaults: prevents menu flash/show before CSS/JS finish loading */
.mobile-overlay[hidden],
.mobile-menu[hidden] {
    display: none !important;
}

/* Closed by default even if the hidden attribute is stripped by cache/minifier/browser restore */
.mobile-overlay:not(.open),
.mobile-menu:not(.open) {
    visibility: hidden;
    pointer-events: none;
}

.mobile-overlay.open,
.mobile-menu.open {
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(410px, calc(100vw - 24px));
    background: #f8fafc;
    z-index: 9999;
    transform: translateX(calc(100% + 18px));
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 24px;
    box-shadow: -18px 24px 70px rgba(2, 6, 23, .32);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mob-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    background:
        radial-gradient(circle at 85% 0%, rgba(225, 29, 72, .45), transparent 38%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    flex-shrink: 0;
    overflow: hidden;
}

.mob-head::after {
    content: '24/7 Support';
    position: absolute;
    left: 22px;
    bottom: 14px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.mob-head svg {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.mob-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all .2s ease;
    flex-shrink: 0;
}

.mob-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.mob-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 6px;
}

.mob-nav-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 3px 8px 10px;
}

.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    margin-bottom: 8px;
    padding: 13px 15px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: border-color .18s, background .18s, color .18s, transform .18s, box-shadow .18s;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}

.mob-link:hover,
.mob-link.expanded {
    border-color: rgba(225, 29, 72, .25);
    background: #fff7f9;
    color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(225, 29, 72, .08);
}

.mob-arrow {
    width: 27px;
    height: 27px;
    border-radius: 9px;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #64748b;
    transition: all .25s;
    flex-shrink: 0;
}

.mob-link.expanded .mob-arrow {
    transform: rotate(90deg);
    background: var(--red);
    color: #fff;
}

.mob-sub {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.mob-sub.open {
    max-height: 720px;
}

.mob-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 2px 0 12px;
}

.mob-sub-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 104px;
    padding: 12px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all .16s ease;
}

.mob-sub-item:hover {
    border-color: rgba(225, 29, 72, .36);
    background: #fff7f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

.mob-sub-ico {
    width: 32px;
    height: 32px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid rgba(225, 29, 72, .1);
}

.mob-sub-name {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    font-family: 'Roboto', sans-serif;
    line-height: 1.25;
}

.mob-sub-desc {
    font-size: 10.5px;
    color: #64748b;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.mob-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0 14px;
}

.mob-foot {
    padding: 13px 14px 16px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    flex-shrink: 0;
}

.mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 45px;
    padding: 12px 10px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 12.5px;
    font-family: 'Roboto', sans-serif;
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    text-decoration: none;
    text-align: center;
}

.mob-btn:hover {
    transform: translateY(-1px);
}

.mob-btn-red {
    background: var(--red);
    color: #fff;
    grid-column: span 2;
}

.mob-btn-red:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 24px rgba(225, 29, 72, .22);
}

.mob-btn-green {
    background: var(--green);
    color: #fff;
}

.mob-btn-green:hover {
    background: var(--green-dark);
    box-shadow: 0 10px 24px rgba(0, 201, 107, .18);
}

.mob-btn-ghost {
    background: #f8fafc;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.mob-btn-ghost:hover {
    background: #fff;
}

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

@media (max-width: 480px) {
    .mobile-menu {
        top: 8px;
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
        border-radius: 20px;
    }

    .mob-sub-grid {
        grid-template-columns: 1fr;
    }

    .mob-sub-item {
        min-height: auto;
    }
}

/* ════════════════════
       HERO
    ════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    position: absolute;
    top: -6%;
    left: -6%;
    width: 112%;
    height: 112%;
    background-size: cover;
    background-position: center;
}

.hs1 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hs2 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hs3 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hero-slide.active .hero-slide-img,
.hero-slide-img.animate-kb {
    animation: kb 9s ease forwards;
}

@keyframes kb {
    0% {
        transform: scale(1) translate(0, 0)
    }

    100% {
        transform: scale(1.09) translate(-1.5%, -1%)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .78) 38%, rgba(15, 23, 42, .42) 68%, rgba(15, 23, 42, .28) 100%), radial-gradient(circle at 18% 45%, rgba(225, 29, 72, .28), transparent 36%), linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 74px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .38rem 1.15rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(.85)
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.07;
    letter-spacing: -.02em;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
}

.hero h1 em {
    color: #ff5c7a;
    font-style: normal;
}

.hero-lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.1rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 2.6rem;
}

.btn-hero-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: .95rem 1.85rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .98rem;
    transition: all .2s;
    text-transform: uppercase;
}

.btn-hero-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 201, 107, .35);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    padding: .95rem 1.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .98rem;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: all .2s;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .18);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.trust-avatars {
    display: flex;
}

.t-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    margin-left: -9px;
    flex-shrink: 0;
}

.t-avatar:first-child {
    margin-left: 0;
}

.av-blue {
    background: #2563eb
}

.av-green {
    background: #059669
}

.av-purple {
    background: #7c3aed
}

.av-orange {
    background: #d97706
}

.trust-txt {
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
}

.trust-txt strong {
    color: #fff;
}

.vid-controls {
    position: absolute;
    bottom: 2.25rem;
    right: 2.25rem;
    z-index: 3;
}

.vid-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.vid-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.vid-dot.active {
    width: 22px;
    background: #fff;
}

/* ════════════════════
       STATS BAR
    ════════════════════ */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-item {
    padding: 1.2rem .75rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-num.accent {
    color: var(--red);
}

.stat-lbl {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .32rem;
}

/* ════════════════════
       SECTIONS PADDING
    ════════════════════ */
.about-section,
.services-section,
.clients-section,
.vts-coverage-section,
.vts-clean-cta {
    padding: 100px 0;
}

/* ════════════════════
       ABOUT
    ════════════════════ */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.6rem 0;
}

.astat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
    text-align: center;
    transition: all .2s;
}

.astat:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, .08);
}

.astat-num {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.astat-num.accent {
    color: var(--red);
}

.astat-lbl {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .3rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .72rem;
    margin-bottom: 1.6rem;
}

.feat-box {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem 1rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
    transition: all .2s;
    cursor: default;
}

.feat-box:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(225, 29, 72, .08);
    transform: translateY(-2px);
}

.feat-ico {
    width: 36px;
    height: 36px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-why {
    font-size: .94rem;
    color: var(--slate);
    line-height: 1.82;
    padding: 1.1rem 1.35rem;
    border-left: 3px solid var(--red);
    background: rgba(225, 29, 72, .03);
    border-radius: 0 10px 10px 0;
    margin-top: 1.35rem;
}

.about-why strong {
    color: var(--navy);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.about-card {
    background: var(--navy);
    border-radius: 18px;
    padding: 1.85rem;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--red);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: .08;
}

.about-card-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.15rem;
    position: relative;
    z-index: 1;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .48rem;
    position: relative;
    z-index: 1;
}

.chip {
    display: inline-block;
    padding: .34rem 1rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 600;
}

.chip-default {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cbd5e1;
}

.chip-red {
    background: rgba(225, 29, 72, .18);
    border: 1px solid rgba(225, 29, 72, .35);
    color: #fca5a5;
}

.chip-green {
    background: rgba(0, 201, 107, .15);
    border: 1px solid rgba(0, 201, 107, .3);
    color: #6ee7b7;
}

.about-card-copy {
    margin-top: 1.3rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.7rem;
}

.process-card-title {
    font-size: .9rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.15rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
}

.step-desc {
    font-size: .82rem;
    color: var(--slate);
    line-height: 1.65;
    margin-top: .22rem;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--navy);
    border-radius: 12px;
    padding: 1.1rem 1.35rem;
}

.trust-badge-green {
    margin-left: auto;
    background: var(--green);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: .32rem .8rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ════════════════════
       SERVICES
    ════════════════════ */
.services-section {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.25rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.85rem;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.svc-icon {
    width: 58px;
    height: 58px;
    background: var(--red-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.35rem;
}

.svc-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem;
}

.svc-desc {
    font-size: .94rem;
    color: var(--slate);
    line-height: 1.75;
}

.svc-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: .24rem .72rem;
    border-radius: 5px;
    margin-top: .85rem;
}

.badge-hot {
    background: #fee2e2;
    color: #991b1b;
}

.badge-new {
    background: #dcfce7;
    color: #166534;
}

/* ════════════════════
       PRICING
    ════════════════════ */
.pricing-section {
    background: #fff;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin: 1.75rem 0 0;
}

.ptab {
    font-size: .88rem;
    font-weight: 700;
    padding: .55rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--slate);
    cursor: pointer;
    transition: all .18s;
}

.ptab.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.pricing-group {
    margin-top: 2.75rem;
}

.pricing-group-head {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-group-head h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
}

.pricing-group-head h3 span {
    color: var(--red);
}

.pricing-group-head p {
    color: var(--slate);
    font-size: .92rem;
    margin-top: .35rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.7rem;
    position: relative;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.price-card.featured {
    border: 2px solid var(--red);
    box-shadow: 0 10px 32px rgba(225, 29, 72, .14);
}

.price-card-badge {
    position: absolute;
    top: -13px;
    right: 1.5rem;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 999px;
}

.price-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .6rem;
}

.price-card-value {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: .2rem;
}

.price-card-value sup {
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 2px;
}

.price-card-credits {
    font-size: .85rem;
    color: var(--slate);
    margin-bottom: 1.4rem;
}

.price-card-features {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    flex-grow: 1;
}

.price-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .89rem;
    color: var(--slate);
    padding: .4rem 0;
    border-bottom: 1px dashed var(--border);
}

.price-card-features li:last-child {
    border-bottom: none;
}

.price-check {
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}

.price-cross {
    color: #cbd5e1;
    font-weight: 900;
    flex-shrink: 0;
}

.price-card-cta {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: .8rem 1rem;
    border-radius: 10px;
    transition: all .2s;
}

.price-card.featured .price-card-cta {
    background: var(--red);
}

.price-card-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════
       CLIENTS
    ════════════════════ */
.clients-section {
    background: #fff;
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin: 1.85rem 0 1.65rem;
}

.itab {
    padding: .42rem 1.1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--slate);
    background: #fff;
    cursor: pointer;
    transition: all .2s;
}

.itab.active,
.itab:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 2.25rem;
}

.client-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.65rem 1rem;
    text-align: center;
    transition: all .22s;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.client-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.client-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(225, 29, 72, .1);
    transform: translateY(-5px);
}

.client-card:hover::after {
    transform: scaleX(1);
}

.client-icon {
    font-size: 2.1rem;
    margin-bottom: .65rem;
}

.client-name {
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--navy);
}

.client-type {
    font-size: .72rem;
    color: var(--slate);
    margin-top: .28rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.client-tag {
    display: inline-block;
    margin-top: .65rem;
    font-size: .65rem;
    font-weight: 700;
    padding: .22rem .68rem;
    border-radius: 4px;
}

.tag-india {
    background: #fef3c7;
    color: #92400e
}

.tag-intl {
    background: #dbeafe;
    color: #1e40af
}

.tag-new {
    background: #dcfce7;
    color: #166534
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--navy);
    border-radius: 18px;
    padding: 1.9rem 2.25rem;
    margin-bottom: 2.75rem;
}

.cstat {
    text-align: center;
}

.cstat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cstat-num.r {
    color: #ff5c7a;
}

.cstat-lbl {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .5);
    margin-top: .38rem;
}

.testi-head {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.55rem;
    transition: all .2s;
}

.testi-card:hover {
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(225, 29, 72, .07);
    transform: translateY(-3px);
}

.stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-bottom: .45rem;
    letter-spacing: 1px;
}

.testi-quote {
    font-size: 2.6rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: .28rem;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.78;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-av-name {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy);
}

.testi-av-co {
    font-size: .73rem;
    color: var(--slate);
}

/* ════════════════════
   COVERAGE SECTION — LIGHT PREMIUM REDESIGN
════════════════════ */

.vts-coverage-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(225, 29, 72, .07), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(0, 201, 107, .07), transparent 28%),
        var(--bg);
    position: relative;
    overflow: hidden;
}

.vts-coverage-head {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.vts-coverage-head .section-sub {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Top Stats */
.cov-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.cov-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    position: relative;
    overflow: hidden;
}

.cov-stat::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: .9;
}

.cov-stat:hover {
    border-color: rgba(225, 29, 72, .22);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .09);
}

.cov-stat-num {
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.cov-stat-num.r {
    color: var(--red);
}

.cov-stat-lbl {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .45rem;
}

/* Main Layout */
.vts-coverage-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 1.35rem;
    align-items: stretch;
}

/* Left Intro Card — no dark background */
.vts-coverage-intro {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .07);
    display: flex;
    flex-direction: column;
}

.vts-coverage-intro::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -95px;
    top: -110px;
    background: radial-gradient(circle, rgba(225, 29, 72, .13), transparent 68%);
    pointer-events: none;
}

.vts-coverage-intro::after {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 999px 999px 0 0;
}

/* Small Badge */
.cov-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    align-self: flex-start;
    background: rgba(225, 29, 72, .08);
    border: 1px solid rgba(225, 29, 72, .18);
    color: var(--red);
    border-radius: 999px;
    padding: .42rem 1rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
    position: relative;
    z-index: 1;
}

.cov-pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 201, 107, .12);
    animation: pulse 2s infinite;
}

.vts-coverage-intro h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.16;
    text-transform: uppercase;
    letter-spacing: -.025em;
    margin-bottom: .9rem;
    position: relative;
    z-index: 1;
}

.vts-coverage-intro h3 span {
    color: var(--red);
}

.vts-coverage-intro p {
    color: var(--slate);
    font-size: .95rem;
    line-height: 1.78;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

/* Mini Stats */
.cov-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

.cov-mini-stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .9rem .55rem;
    text-align: center;
    min-width: 0;
}

.cov-mini-stat:hover {
    background: #fff;
    border-color: rgba(225, 29, 72, .24);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.cov-mini-stat strong {
    display: block;
    color: var(--navy);
    font-size: clamp(.95rem, 1.4vw, 1.25rem);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.cov-mini-stat span {
    display: block;
    color: var(--slate);
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .45px;
    margin-top: .34rem;
    white-space: nowrap;
}

/* Features */
.cov-features {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.45rem;
    position: relative;
    z-index: 1;
}

.cov-feature {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .72rem .85rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}

.cov-feature:hover {
    border-color: rgba(0, 201, 107, .25);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.cov-feature-ico {
    width: 25px;
    height: 25px;
    background: rgba(0, 201, 107, .1);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* CTA Button */
.vts-coverage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    padding: 15px 22px;
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .22s;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.vts-coverage-btn:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(225, 29, 72, .25);
}

/* Right Side */
.cov-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tabs */
.cov-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: .55rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.cov-tab {
    padding: .82rem 1rem;
    border-radius: 13px;
    font-size: .88rem;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    color: var(--slate);
    border: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
}

.cov-tab:hover {
    color: var(--red);
    background: var(--red-light);
}

.cov-tab.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 22px rgba(225, 29, 72, .22);
}

/* Coverage List Card */
.vts-coverage-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.45rem;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .07);
}

.vts-coverage-card-head {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vts-coverage-card-head span:first-child {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.cov-count-badge {
    background: rgba(225, 29, 72, .08);
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    padding: .35rem .85rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* Search */
.cov-search {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-family: 'Roboto', sans-serif;
    color: var(--navy);
    background: var(--bg);
    outline: none;
    margin-bottom: 1rem;
    transition: all .2s;
}

.cov-search:focus {
    border-color: rgba(225, 29, 72, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, .08);
}

/* City/Country Links as Pills */
.vts-coverage-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    max-height: 410px;
    overflow-y: auto;
    padding-right: .25rem;
}

.vts-coverage-list::-webkit-scrollbar {
    width: 6px;
}

.vts-coverage-list::-webkit-scrollbar-thumb {
    background: rgba(225, 29, 72, .28);
    border-radius: 999px;
}

.vts-coverage-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    min-height: 42px;
    padding: .65rem .75rem;
    border-radius: 13px;
    transition: all .18s;
}

.vts-coverage-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 7px;
    flex-shrink: 0;
}

.vts-coverage-list a:hover {
    color: var(--red);
    background: #fff;
    border-color: rgba(225, 29, 72, .28);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    padding-left: .75rem;
}

/* Panels */
.cov-panel {
    display: none;
}

.cov-panel.active {
    display: block;
}

/* WhatsApp Strip */
.cov-wa-strip {
    background: #fff;
    border: 1px solid rgba(0, 201, 107, .22);
    border-radius: 18px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.cov-wa-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 201, 107, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    flex-shrink: 0;
}

.cov-wa-text {
    flex: 1;
}

.cov-wa-text strong {
    display: block;
    font-size: .92rem;
    font-weight: 900;
    color: var(--navy);
}

.cov-wa-text span {
    font-size: .8rem;
    color: var(--slate);
}

.cov-wa-btn {
    background: var(--green);
    color: #fff;
    font-size: .8rem;
    font-weight: 900;
    padding: .68rem 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
}

.cov-wa-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 201, 107, .2);
}

/* Responsive */
@media (max-width: 1100px) {
    .vts-coverage-layout {
        grid-template-columns: 1fr;
    }

    .vts-coverage-list {
        max-height: none;
    }
}

@media (max-width: 900px) {
    .cov-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .vts-coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vts-coverage-head {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .cov-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .cov-stat {
        padding: 1.05rem .65rem;
        border-radius: 16px;
    }

    .vts-coverage-intro,
    .vts-coverage-card {
        border-radius: 20px;
        padding: 1.25rem;
    }

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

    .cov-mini-stat strong {
        font-size: 1.05rem;
    }

    .cov-mini-stat span {
        font-size: .62rem;
    }

    .cov-tabs {
        grid-template-columns: 1fr;
    }

    .vts-coverage-list {
        grid-template-columns: 1fr;
        max-height: 360px;
    }

    .cov-wa-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .cov-wa-btn {
        width: 100%;
        text-align: center;
    }
}

/* ════════════════════
       CTA FORM
    ════════════════════ */
.vts-clean-cta {
    background: #fff;
}

.vts-clean-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: stretch;
    background: var(--navy);
    border-radius: 26px;
    padding: 64px 68px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
}

.vts-clean-cta-box::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -180px;
    background: radial-gradient(circle, rgba(225, 29, 72, .22), transparent 65%);
    pointer-events: none;
}

.vts-clean-cta-content,
.vts-enquiry-card {
    position: relative;
    z-index: 1;
}

.vts-clean-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.vts-enquiry-card {
    align-self: stretch;
    height: 100%;
}

.vts-clean-cta-tag {
    display: inline-flex;
    align-items: flex-start;
    width: fit-content;
    background: rgba(225, 29, 72, .14);
    color: #fda4af;
    border: 1px solid rgba(225, 29, 72, .28);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.vts-clean-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.vts-clean-cta p {
    color: rgba(255, 255, 255, .62);
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 26px;
}

.vts-clean-cta-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.vts-clean-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: .9rem;
    font-weight: 700;
}

.vts-clean-cta-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.vts-enquiry-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.vts-enquiry-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.vts-enquiry-card>p {
    color: var(--slate);
    font-size: .92rem;
    line-height: 1.62;
    margin-bottom: 20px;
}

.vts-enquiry-form {
    display: grid;
    gap: 13px;
}

.vts-form-group input,
.vts-form-group select,
.vts-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: var(--navy);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .94rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: all .2s ease;
}

.vts-form-group textarea {
    resize: none;
}

.vts-form-group input:focus,
.vts-form-group select:focus,
.vts-form-group textarea:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, .08);
}

.vts-enquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: var(--red);
    color: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: .94rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .22s ease;
    width: 100%;
}

.vts-enquiry-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(225, 29, 72, .24);
}

.form-msg {
    display: none;
    padding: 11px 15px;
    border-radius: 10px;
    font-size: .87rem;
    font-weight: 600;
    margin-top: 6px;
}

.form-msg.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-msg.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ════════════════════
       FOOTER — NEW
    ════════════════════ */
.vts-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, .6);
    font-family: 'Roboto', sans-serif;
}

/* Main footer */
.footer-main {
    padding: 70px 48px 52px;
    max-width: 1420px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr 1.3fr;
    gap: 52px;
    align-items: flex-start;
    margin-bottom: 52px;
}

/* Brand */
.footer-brand-desc {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.82;
    margin: 18px 0 24px;
    max-width: 310px;
}

.footer-socials {
    display: flex;
    gap: 11px;
}

.fsoc {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, .65);
}

.fsoc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 201, 107, .12);
    border: 1px solid rgba(0, 201, 107, .25);
    border-radius: 999px;
    padding: .3rem .9rem;
    font-size: .72rem;
    font-weight: 700;
    color: #6ee7b7;
    margin-top: 16px;
}

.fbadge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Nav cols */
.footer-col h4 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 11px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, .52);
    font-size: .88rem;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col a::before {
    content: '›';
    color: var(--red);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact card (replaces newsletter) */
.footer-contact-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px 28px 30px;
    margin-top: -2px;
    min-height: auto;
}

.footer-contact-card .footer-title {
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(225, 29, 72, .14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-text {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
    line-height: 1.4;
}

.footer-whatsapp-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 11px;
    margin-top: 8px;
}

.footer-contact-card h5 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 11px;
}

.footer-contact-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.fcc-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
}

.fcc-row:last-child {
    margin-bottom: 0;
}

.fcc-ico {
    width: 34px;
    height: 34px;
    background: rgba(225, 29, 72, .15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.fcc-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.fcc-value {
    font-size: .86rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    line-height: 1.5;
}

.fcc-value a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: color .2s;
}

.fcc-value a:hover {
    color: #fff;
}

.fcc-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: .72rem;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 16px;
    transition: all .2s;
}

.fcc-wa-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* Divider & bottom */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-bottom-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: .76rem;
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, .2);
}

.footer-pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fpay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .62);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s;
}

.fpay:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}


/* Small utility classes added after removing Bootstrap CSS */
.text-uppercase {
    text-transform: uppercase;
}

.fw-bold {
    font-weight: 700;
}

.text-red-soft {
    color: #ff5c7a;
}

.trust-white {
    color: rgba(255, 255, 255, .72);
}

.trust-white strong {
    color: #fff;
}

/* ════════════════════
       RESPONSIVE
    ════════════════════ */
@media (max-width: 1280px) {
    .vts-container {
        max-width: 100%;
        padding-left: 36px;
        padding-right: 36px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid>div:first-child {
        grid-column: span 2;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-main {
        padding: 64px 36px 48px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .vts-clean-cta-box {
        grid-template-columns: 1fr;
        padding: 48px 42px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

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

    .vts-coverage-layout {
        grid-template-columns: 1fr;
    }

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

    .vts-coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .vts-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
        padding: 120px 0 70px;
        align-items: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .vid-controls {
        right: 22px;
        bottom: 22px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.1rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

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

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-top: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .services-section,
    .clients-section,
    .vts-coverage-section,
    .vts-clean-cta {
        padding: 68px 0;
    }

    .vts-clean-cta-box {
        padding: 34px 26px;
        border-radius: 20px;
    }

    .footer-main {
        padding: 52px 22px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid>div:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-green,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }

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

    .stat-item:nth-child(5) {
        grid-column: span 2;
    }

    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

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

    .cov-mini-stats {
        grid-template-columns: repeat(4, minmax(64px, 1fr));
        gap: 6px;
    }

    .cov-mini-stat {
        padding: 10px 5px;
    }

    .cov-mini-stat strong {
        font-size: 13px;
    }

    .cov-mini-stat span {
        font-size: 8px;
        letter-spacing: .2px;
    }

    .cov-wa-strip {
        flex-wrap: wrap;
    }

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

    .astat:last-child {
        grid-column: span 2;
    }
}

.footer-grid {
    align-items: flex-start;
}

.footer-contact-col {
    align-self: flex-start;
}

.footer-contact-col .footer-contact-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 22px;
    margin-top: 22px;
}

.footer-contact-col h5 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 11px;
}

.footer-contact-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.fcc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.fcc-row:last-of-type {
    margin-bottom: 0;
}

.fcc-ico {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(225, 29, 72, .15);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.fcc-label {
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .38);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.fcc-value {
    font-size: .88rem;
    color: rgba(255, 255, 255, .86);
    font-weight: 600;
    line-height: 1.45;
}

.fcc-value a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.fcc-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: .78rem;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 20px;
    transition: all .2s;
}

.fcc-wa-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Footer Get In Touch alignment fix: same start line as Company / Services / Support */
.footer-contact-col .footer-contact-card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.footer-contact-col h5 {
    margin-bottom: 18px !important;
}

.footer-contact-col .fcc-row {
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-col .fcc-ico {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 7px;
    font-size: .72rem;
    margin-top: 1px;
}

.footer-contact-col .fcc-label {
    font-size: .68rem;
    letter-spacing: .8px;
    margin-bottom: 2px;
}

.footer-contact-col .fcc-value {
    font-size: .86rem;
    line-height: 1.45;
}

.footer-contact-col .fcc-wa-btn {
    width: 100%;
    margin-top: 16px;
    min-height: 42px;
    padding: .68rem .9rem;
    border-radius: 9px;
}

.footer-contact-col .fcc-value a,
.footer-contact-col .fcc-value a:hover,
.footer-contact-col .fcc-value a:focus,
.footer-contact-col .fcc-value a:active {
    color: inherit !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    background: transparent !important;
}

.footer-contact-col .fcc-value a::before {
    display: none !important;
    content: none !important;
}

.footer-contact-col .fcc-wa-btn::before,
.footer-contact-col .fcc-wa-btn::after {
    display: none !important;
    content: none !important;
}

.footer-contact-col .fcc-wa-btn {
    padding-left: .9rem !important;
}

/* ===== VTS page-type content differentiation ===== */
.vts-page-intent-section{position:relative;padding:90px 0;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);overflow:hidden}.vts-page-intent-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 12%,rgba(22,163,74,.08),transparent 28%),radial-gradient(circle at 88% 16%,rgba(220,38,38,.07),transparent 26%);pointer-events:none}.vts-page-intent-section .vts-container{position:relative;z-index:1}.vts-intent-head{max-width:880px;margin:0 auto 34px;text-align:center}.vts-intent-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.vts-intent-card{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:26px;box-shadow:0 18px 45px rgba(15,23,42,.07);transition:.25s ease}.vts-intent-card:hover{transform:translateY(-5px);box-shadow:0 24px 60px rgba(15,23,42,.1)}.vts-intent-ico{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,#16a34a,#22c55e);color:#fff;font-size:1.35rem;margin-bottom:16px}.vts-intent-card:nth-child(2) .vts-intent-ico{background:linear-gradient(135deg,#dc2626,#f97316)}.vts-intent-card:nth-child(3) .vts-intent-ico{background:linear-gradient(135deg,#0f172a,#334155)}.vts-intent-card h3{font-size:1.13rem;line-height:1.35;margin:0 0 10px;color:#0f172a}.vts-intent-card p{font-size:.94rem;line-height:1.75;color:#475569;margin:0}.vts-intent-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:28px}.vts-intent-pill{background:#0f172a;color:#e5e7eb;border-radius:18px;padding:18px 20px;font-size:.9rem;line-height:1.55}.vts-intent-pill strong{display:block;color:#fff;margin-bottom:4px}.vts-mini-faq{margin-top:28px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.vts-mini-faq article{background:rgba(255,255,255,.78);border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:18px}.vts-mini-faq h4{font-size:.98rem;margin:0 0 8px;color:#111827}.vts-mini-faq p{font-size:.88rem;line-height:1.65;color:#64748b;margin:0}.vts-utility-strip{display:flex;gap:16px;align-items:center;justify-content:space-between;background:#0f172a;color:#fff;border-radius:24px;padding:24px 28px;margin-top:30px}.vts-utility-strip p{margin:0;color:#cbd5e1}.vts-utility-strip a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 18px;border-radius:999px;background:#22c55e;color:#fff;text-decoration:none;font-weight:800;white-space:nowrap}.vts-template-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:rgba(34,197,94,.1);color:#166534;font-weight:800;font-size:.8rem;margin-bottom:14px}.vts-page-intent-section.vts-utility-template{background:linear-gradient(180deg,#f8fafc 0%,#fff 100%)}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(1){border-top:4px solid #22c55e}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(2){border-top:4px solid #ef4444}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(3){border-top:4px solid #0f172a}@media(max-width:1024px){.vts-intent-grid,.vts-intent-points,.vts-mini-faq{grid-template-columns:1fr}.vts-page-intent-section{padding:64px 0}.vts-utility-strip{flex-direction:column;align-items:flex-start}}@media(max-width:575px){.vts-intent-card{padding:22px}.vts-utility-strip{padding:20px}.vts-intent-head{text-align:left}.vts-intent-head .section-title{text-align:left}}
/* =========================================================================
   NEW ADVANCED FULL-SCALE ARCHITECTURE (PINKISH, WHITE & RED HIGH INTENSITY)
   ========================================================================= */

:root {
    --vts-new-pink: #fff0f3;
    --vts-new-pink-mid: #ffb3c1;
    --vts-new-red: #e11d48;
    --vts-new-red-dark: #be123c;
    --vts-new-white: #ffffff;
    --vts-new-slate: #0f172a;
    --vts-new-text: #475569;
}

.vts-new-body {
    background-color: var(--vts-new-white);
    color: var(--vts-new-slate);
    overflow: hidden;
}

.vts-new-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.vts-new-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vts-new-red);
    background: var(--vts-new-pink);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.vts-new-tag.text-white {
    color: var(--vts-new-white);
    background: rgba(255, 255, 255, 0.15);
}

.vts-new-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--vts-new-slate);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.vts-new-heading span { color: var(--vts-new-red); }
.vts-new-lead { font-size: 1.05rem; line-height: 1.75; color: var(--vts-new-text); margin-top: 16px; }
.vts-new-center-head { text-align: center; max-width: 750px; margin: 0 auto 40px; }
.vts-new-sub { font-size: 0.98rem; color: var(--vts-new-text); margin-top: 10px; }
.vts-new-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

.vts-new-about, .vts-new-why, .vts-new-pricing, .vts-new-global, .vts-new-enquiry-sec {
    padding: 85px 0;
    position: relative;
}

/* ── 1. SCREENSHOT LIQUID GLASS CARD ARCHITECTURE ── */
.vts-new-about { background: linear-gradient(180deg, var(--vts-new-white) 0%, var(--vts-new-pink) 100%); }
.vts-new-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.vts-new-mstat { background: var(--vts-new-white); padding: 16px; border-radius: 16px; border: 1px solid rgba(225, 29, 72, 0.1); }
.vts-new-mstat strong { display: block; font-size: 1.65rem; color: var(--vts-new-red); }
.vts-new-mstat span { font-size: 0.82rem; color: var(--vts-new-text); }
.vts-new-card-wrapper { position: relative; padding: 10px; }

.vts-liquid-glass-card {
    position: relative;
    border-radius: 24px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 55px rgba(225, 29, 72, 0.07);
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.vts-glass-blur {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 15% 25%, var(--vts-new-pink-mid) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, var(--vts-new-red) 0%, transparent 45%);
    z-index: 1;
    opacity: 0.45;
    filter: blur(25px);
    animation: liquidDistortionMove 7s ease-in-out infinite alternate;
}

.vts-glass-content { position: relative; z-index: 2; }
.vts-glass-content h3 { font-size: 1.65rem; font-weight: 800; color: var(--vts-new-slate); letter-spacing: -0.01em; margin-bottom: 6px; }
.vts-glass-content p { font-size: 0.95rem; color: var(--vts-new-text); line-height: 1.5; }
.vts-glass-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.vts-glass-chips span { background: rgba(255, 255, 255, 0.7); color: var(--vts-new-slate); padding: 8px 14px; border-radius: 10px; font-size: 0.82rem; font-weight: 700; width: max-content; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }

/* ── 2. FEATURE MATRIX ── */
.vts-new-why { background: var(--vts-new-white); }
.vts-new-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vts-new-feat-card { background: var(--vts-new-white); border: 1px solid #f1f5f9; padding: 32px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.01); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s; }
.vts-new-feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(225, 29, 72, 0.05); border-color: var(--vts-new-pink-mid); }
.vts-new-feat-icon { width: 46px; height: 46px; background: var(--vts-new-pink); font-size: 1.4rem; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; }

/* ── 3. TIED PRICING ── */
.vts-new-pricing { background: linear-gradient(180deg, var(--vts-new-white) 0%, #fff6f8 100%); }
.vts-new-pricing-wrap { max-width: 420px; margin: 0 auto; }
.vts-new-price-box { background: var(--vts-new-white); border: 2px solid var(--vts-new-red); border-radius: 24px; padding: 40px 32px; text-align: center; position: relative; box-shadow: 0 20px 50px rgba(225, 29, 72, 0.1); }
.vts-new-price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--vts-new-red); color: var(--vts-new-white); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; padding: 4px 16px; border-radius: 99px; letter-spacing: 1px; }
.vts-new-amt { font-size: 2.85rem; font-weight: 900; color: var(--vts-new-slate); margin: 12px 0; }
.vts-new-amt sup { font-size: 1.35rem; }
.vts-new-amt span { font-size: 0.88rem; color: var(--vts-new-text); font-weight: 500; }
.vts-new-pfeatures { list-style: none; text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 11px; }
.vts-new-pfeatures li { font-size: 0.88rem; color: var(--vts-new-text); }
.vts-new-pfeatures li span { color: var(--vts-new-red); margin-right: 6px; font-weight: bold; }
.vts-new-pbtn { display: block; background: var(--vts-new-slate); color: var(--vts-new-white); padding: 13px; border-radius: 12px; font-weight: 700; transition: background 0.2s; }
.vts-new-pbtn:hover { background: var(--vts-new-red); }

/* ── 4. PRESENCE LAYER (TABS + ALL 80 DESTINATIONS) ── */
.vts-new-global { background: var(--vts-new-white); }
.vts-new-network-counter { display: flex; gap: 20px; max-width: 600px; margin: 0 auto 36px; }
.vts-new-net-pill { background: var(--vts-new-pink); padding: 16px 24px; border-radius: 18px; flex: 1; text-align: center; border: 1px solid rgba(225, 29, 72, 0.05); }
.vts-new-net-pill strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--vts-new-red); }
.vts-new-net-pill span { font-size: 0.82rem; font-weight: 700; color: var(--vts-new-slate); }

.vts-new-geo-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; }
.vts-geo-btn { background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px 24px; border-radius: 14px; font-size: 0.9rem; font-weight: 700; color: var(--vts-new-slate); cursor: pointer; transition: all 0.25s; font-family: inherit; }
.vts-geo-btn:hover { background: var(--vts-new-pink); color: var(--vts-new-red); }
.vts-geo-btn.active { background: var(--vts-new-red); color: var(--vts-new-white); border-color: var(--vts-new-red); box-shadow: 0 10px 20px rgba(225, 29, 72, 0.15); }

.vts-geo-panel { display: none; }
.vts-geo-panel.active { display: block; animation: vtsFadeIn 0.4s ease forwards; }

.vts-geo-grid-list, .vts-geo-grid-list-intl {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.vts-geo-grid-list-intl { grid-template-columns: repeat(4, 1fr); }

.vts-geo-panel a {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vts-new-slate);
    transition: all 0.2s;
}

.vts-geo-panel a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--vts-new-red);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.vts-geo-panel a:hover {
    background: var(--vts-new-white);
    border-color: var(--vts-new-red);
    color: var(--vts-new-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.05);
}

/* ── 5. FULL FORM WORKSPACE DEPLOYMENT ── */
.vts-new-enquiry-sec { background: var(--vts-new-white); }
.vts-new-enquiry-box { background: var(--vts-new-slate); border-radius: 32px; padding: 52px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; color: var(--vts-new-white); position: relative; }
.vts-new-enquiry-info { display: flex; flex-direction: column; justify-content: flex-start; }
.vts-new-enquiry-info h2 { font-size: 2.35rem; font-weight: 900; text-transform: uppercase; line-height: 1.15; margin-top: 8px; }
.vts-new-enquiry-info p { color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.6; font-size: 0.95rem; }
.vts-form-meta-note { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 24px; }
.vts-form-meta-note small { color: var(--vts-new-pink-mid); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.5px; }

.vts-new-form-wrapper { background: var(--vts-new-white); padding: 36px; border-radius: 24px; color: var(--vts-new-slate); box-shadow: 0 20px 45px rgba(0,0,0,0.18); }
.vts-aligned-lead-form { display: grid; gap: 16px; }
.vts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vts-form-field { display: flex; flex-direction: column; gap: 6px; }
.vts-form-field label { font-size: 0.8rem; font-weight: 800; color: var(--vts-new-slate); }
.vts-req { color: var(--vts-new-red); }

.vts-aligned-lead-form input, .vts-aligned-lead-form select, .vts-aligned-lead-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    outline: none;
    transition: all 0.2s;
}

.vts-aligned-lead-form textarea { resize: vertical; min-height: 80px; }
.vts-aligned-lead-form input:focus, .vts-aligned-lead-form select:focus, .vts-aligned-lead-form textarea:focus { border-color: var(--vts-new-red); background: var(--vts-new-white); box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08); }
.vts-modern-submit { width: 100%; min-height: 50px; background: linear-gradient(135deg, var(--vts-new-red), #ff5c7a); color: var(--vts-new-white); border: 0; border-radius: 999px; font-weight: 900; text-transform: uppercase; font-size: 0.88rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 10px 25px rgba(225, 29, 72, 0.2); }
.vts-modern-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(225, 29, 72, 0.3); }

/* ── SYSTEM KEYFRAMES ── */
@keyframes liquidDistortionMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(35px, 25px) scale(1.18) rotate(10deg); }
}
@keyframes vtsFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE RESPONSIVENESS ── */
@media (max-width: 1150px) {
    .vts-geo-grid-list { grid-template-columns: repeat(4, 1fr); }
    .vts-geo-grid-list-intl { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .vts-new-grid, .vts-new-enquiry-box { grid-template-columns: 1fr; gap: 36px; }
    .vts-new-features-grid { grid-template-columns: 1fr; }
    .vts-geo-grid-list { grid-template-columns: repeat(3, 1fr); }
    .vts-form-meta-note { margin-top: 16px; }
}
@media (max-width: 680px) {
    .vts-geo-grid-list, .vts-geo-grid-list-intl { grid-template-columns: repeat(2, 1fr); }
    .vts-form-row { grid-template-columns: 1fr; gap: 16px; }
    .vts-new-enquiry-box { padding: 24px; border-radius: 20px; }
    .vts-new-form-wrapper { padding: 20px; }
}
@media (max-width: 440px) {
    .vts-geo-grid-list, .vts-geo-grid-list-intl { grid-template-columns: 1fr; }
    .vts-new-geo-tabs { flex-direction: column; }
}
/* =========================================================================
   UPDATED COMBINED GRID SPLIT ARCHITECTURE (PINK, WHITE, RED THEME)
   ========================================================================= */

:root {
    --vts-new-pink: #fff0f3;
    --vts-new-pink-mid: #ffb3c1;
    --vts-new-red: #e11d48;
    --vts-new-red-dark: #be123c;
    --vts-new-white: #ffffff;
    --vts-new-slate: #0f172a;
    --vts-new-text: #475569;
}

.vts-new-body { background-color: var(--vts-new-white); color: var(--vts-new-slate); overflow: hidden; }
.vts-new-container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── INTERSECTION OBSERVER ANIMATION CORE ── */
.vts-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vts-fade-in-up.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.vts-new-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vts-new-red);
    background: var(--vts-new-pink);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.vts-new-tag.text-white { color: var(--vts-new-white); background: rgba(255, 255, 255, 0.15); }
.vts-new-heading { font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.2; color: var(--vts-new-slate); text-transform: uppercase; }
.vts-new-heading span { color: var(--vts-new-red); }
.vts-new-lead { font-size: 1.05rem; line-height: 1.75; color: var(--vts-new-text); margin-top: 16px; }
.vts-new-center-head { text-align: center; max-width: 750px; margin: 0 auto 40px; }
.vts-new-sub { font-size: 0.98rem; color: var(--vts-new-text); margin-top: 10px; }
.vts-new-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

.vts-new-about, .vts-new-why, .vts-split-pricing-global, .vts-new-enquiry-sec {
    padding: 85px 0;
}

/* ── SCREENSHOT DESIGN SPECIFIC GLASS CARD ── */
.vts-new-about { background: linear-gradient(180deg, var(--vts-new-white) 0%, var(--vts-new-pink) 100%); }
.vts-new-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.vts-new-mstat { background: var(--vts-new-white); padding: 16px; border-radius: 16px; border: 1px solid rgba(225, 29, 72, 0.1); }
.vts-new-mstat strong { display: block; font-size: 1.65rem; color: var(--vts-new-red); }
.vts-new-mstat span { font-size: 0.82rem; color: var(--vts-new-text); }

.vts-liquid-glass-card {
    position: relative;
    border-radius: 24px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 55px rgba(225, 29, 72, 0.07);
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: transform 0.4s ease;
}
.vts-liquid-glass-card:hover { transform: scale(1.02); }

.vts-glass-blur {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 15% 25%, var(--vts-new-pink-mid) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, var(--vts-new-red) 0%, transparent 45%);
    z-index: 1;
    opacity: 0.45;
    filter: blur(25px);
    animation: liquidDistortionMove 7s ease-in-out infinite alternate;
}
.vts-glass-content { position: relative; z-index: 2; }
.vts-glass-content h3 { font-size: 1.65rem; font-weight: 800; color: var(--vts-new-slate); margin-bottom: 6px; }
.vts-glass-content p { font-size: 0.95rem; color: var(--vts-new-text); line-height: 1.5; }
.vts-glass-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.vts-glass-chips span { background: rgba(255, 255, 255, 0.7); color: var(--vts-new-slate); padding: 8px 14px; border-radius: 10px; font-size: 0.82rem; font-weight: 700; width: max-content; }

/* ── WHY CHOOSE CARDS ── */
.vts-new-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vts-new-feat-card { background: var(--vts-new-white); border: 1px solid #f1f5f9; padding: 32px; border-radius: 20px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s; }
.vts-new-feat-card:hover { transform: translateY(-5px); border-color: var(--vts-new-pink-mid); }
.vts-new-feat-icon { width: 46px; height: 46px; background: var(--vts-new-pink); font-size: 1.4rem; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; }

/* ── 3. NEW SPLIT COMBINED SECTION (PRICING & GLOBAL) ── */
.vts-split-pricing-global { background: #fffcfd; border-top: 1px solid rgba(225, 29, 72, 0.05); border-bottom: 1px solid rgba(225, 29, 72, 0.05); }
.vts-split-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.vts-split-desc { font-size: 0.95rem; color: var(--vts-new-text); margin: 8px 0 20px; }

.vts-compact-price-box { background: var(--vts-new-white); border: 2px solid var(--vts-new-red); border-radius: 20px; padding: 32px; position: relative; box-shadow: 0 15px 40px rgba(225, 29, 72, 0.06); }
.vts-new-price-badge { position: absolute; top: -12px; left: 24px; background: var(--vts-new-red); color: var(--vts-new-white); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 3px 12px; border-radius: 99px; }
.vts-new-amt { font-size: 2.5rem; font-weight: 900; color: var(--vts-new-slate); margin: 8px 0; }
.vts-new-amt sup { font-size: 1.2rem; }
.vts-new-amt span { font-size: 0.85rem; color: var(--vts-new-text); font-weight: 500; }
.vts-new-pfeatures { list-style: none; padding: 0; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.vts-new-pfeatures li { font-size: 0.85rem; color: var(--vts-new-text); }
.vts-new-pfeatures li span { color: var(--vts-new-red); margin-right: 6px; font-weight: bold; }

.vts-new-pbtn { display: block; text-align: center; background: var(--vts-new-slate); color: var(--vts-new-white); padding: 12px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.vts-new-pbtn:hover { background: var(--vts-new-red); transform: translateY(-2px); }

/* Global side styles inside the split area */
.vts-new-network-counter { display: flex; gap: 16px; margin: 20px 0; }
.vts-new-net-pill { background: var(--vts-new-pink); padding: 12px 20px; border-radius: 14px; flex: 1; text-align: center; }
.vts-new-net-pill strong { display: block; font-size: 1.85rem; color: var(--vts-new-red); }
.vts-new-net-pill span { font-size: 0.8rem; font-weight: 700; color: var(--vts-new-slate); }

.vts-new-geo-tabs { display: flex; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 12px; }
.vts-geo-btn { background: transparent; border: none; padding: 8px 16px; font-size: 0.85rem; font-weight: 700; color: var(--vts-new-text); cursor: pointer; position: relative; font-family: inherit; transition: color 0.2s; }
.vts-geo-btn.active { color: var(--vts-new-red); }
.vts-geo-btn.active::after { content: ''; position: absolute; bottom: -13px; left: 0; right: 0; height: 2px; background: var(--vts-new-red); }

.vts-geo-panel { display: none; }
.vts-geo-panel.active { display: block; }

.vts-geo-scrollable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}
.vts-geo-scrollable-grid::-webkit-scrollbar { width: 4px; }
.vts-geo-scrollable-grid::-webkit-scrollbar-thumb { background: var(--vts-new-pink-mid); border-radius: 99px; }

.vts-geo-panel a { display: flex; align-items: center; background: #f8fafc; border: 1px solid #e2e8f0; padding: 10px 12px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; color: var(--vts-new-slate); transition: all 0.2s; }
.vts-geo-panel a::before { content: ''; width: 5px; height: 5px; background: var(--vts-new-red); border-radius: 50%; margin-right: 8px; }
.vts-geo-panel a:hover { border-color: var(--vts-new-red); color: var(--vts-new-red); background: #fff; }

/* ── 4. FORM ARCHITECTURE ── */
.vts-new-enquiry-box { background: var(--vts-new-slate); border-radius: 32px; padding: 52px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; color: var(--vts-new-white); }
.vts-form-meta-note { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 24px; }
.vts-form-meta-note small { color: var(--vts-new-pink-mid); font-weight: 700; font-size: 0.8rem; }

.vts-new-form-wrapper { background: var(--vts-new-white); padding: 36px; border-radius: 24px; color: var(--vts-new-slate); box-shadow: 0 20px 45px rgba(0,0,0,0.18); }
.vts-aligned-lead-form { display: grid; gap: 16px; }
.vts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vts-form-field { display: flex; flex-direction: column; gap: 6px; }
.vts-form-field label { font-size: 0.8rem; font-weight: 800; }
.vts-req { color: var(--vts-new-red); }

.vts-aligned-lead-form input, .vts-aligned-lead-form select, .vts-aligned-lead-form textarea { width: 100%; min-height: 46px; border: 1px solid #dbe3ef; background: #f8fafc; padding: 10px 14px; border-radius: 12px; font-family: inherit; font-size: 0.88rem; outline: none; transition: all 0.2s; }
.vts-aligned-lead-form textarea { resize: vertical; min-height: 80px; }
.vts-aligned-lead-form input:focus, .vts-aligned-lead-form select:focus, .vts-aligned-lead-form textarea:focus { border-color: var(--vts-new-red); background: var(--vts-new-white); box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08); }
.vts-modern-submit { width: 100%; min-height: 50px; background: linear-gradient(135deg, var(--vts-new-red), #ff5c7a); color: var(--vts-new-white); border: 0; border-radius: 999px; font-weight: 900; text-transform: uppercase; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.vts-modern-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3); }

/* KEYFRAMES */
@keyframes liquidDistortionMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(35px, 25px) scale(1.18) rotate(10deg); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .vts-new-grid, .vts-split-grid, .vts-new-enquiry-box { grid-template-columns: 1fr; gap: 36px; }
    .vts-new-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .vts-geo-scrollable-grid { grid-template-columns: repeat(2, 1fr); }
    .vts-form-row { grid-template-columns: 1fr; }
    .vts-new-enquiry-box { padding: 24px; }
}
@media (max-width: 480px) {
    .vts-geo-scrollable-grid { grid-template-columns: 1fr; }
}
/* =========================================================================
   NEW UPGRADED GLASS ARCHITECTURE & REDIRECT PACKAGES
   ========================================================================= */

:root {
    --vts-new-pink: #fff0f3;
    --vts-new-pink-mid: #ffb3c1;
    --vts-new-red: #e11d48;
    --vts-new-red-dark: #be123c;
    --vts-new-white: #ffffff;
    --vts-new-slate: #0f172a;
    --vts-new-text: #475569;
}

.vts-new-body { background-color: var(--vts-new-white); color: var(--vts-new-slate); overflow: hidden; }
.vts-new-container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Dynamic Scroll Transitions Layer */
.vts-fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.21, 0.6, 0.35, 1), transform 0.85s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.vts-fade-in-up.animate-active { opacity: 1; transform: translateY(0); }

.vts-new-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vts-new-red);
    background: var(--vts-new-pink);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.vts-new-tag.text-white { color: var(--vts-new-white); background: rgba(255, 255, 255, 0.15); }
.vts-new-heading { font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.2; color: var(--vts-new-slate); text-transform: uppercase; letter-spacing: -0.01em; }
.vts-new-heading span { color: var(--vts-new-red); }
.vts-new-lead { font-size: 1.05rem; line-height: 1.75; color: var(--vts-new-text); margin-top: 16px; }
.vts-new-extended-text { font-size: 0.95rem; line-height: 1.7; color: var(--vts-new-text); margin-top: 12px; opacity: 0.9; }
.vts-new-center-head { text-align: center; max-width: 750px; margin: 0 auto 40px; }
.vts-new-sub { font-size: 0.98rem; color: var(--vts-new-text); margin-top: 10px; }
.vts-new-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

.vts-new-about, .vts-new-why, .vts-split-pricing-global, .vts-new-enquiry-sec { padding: 85px 0; }

/* ── ADVANCED COMPLIANT GLASS CARD LOOK ── */
.vts-new-about { background: linear-gradient(180deg, var(--vts-new-white) 0%, var(--vts-new-pink) 100%); }
.vts-new-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.vts-new-mstat { background: var(--vts-new-white); padding: 16px; border-radius: 16px; border: 1px solid rgba(225, 29, 72, 0.1); }
.vts-new-mstat strong { display: block; font-size: 1.65rem; color: var(--vts-new-red); }
.vts-new-mstat span { font-size: 0.82rem; color: var(--vts-new-text); }

.vts-liquid-glass-card {
    position: relative;
    border-radius: 24px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 25px 55px rgba(225, 29, 72, 0.06);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.vts-liquid-glass-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 30px 65px rgba(225, 29, 72, 0.1); }
.vts-glass-blur { position: absolute; inset: -60px; background: radial-gradient(circle at 15% 25%, var(--vts-new-pink-mid) 0%, transparent 40%), radial-gradient(circle at 85% 75%, var(--vts-new-red) 0%, transparent 45%); z-index: 1; opacity: 0.45; filter: blur(25px); animation: liquidDistortionMove 7s ease-in-out infinite alternate; }
.vts-glass-content { position: relative; z-index: 2; }
.vts-glass-content h3 { font-size: 1.65rem; font-weight: 800; color: var(--vts-new-slate); margin-bottom: 6px; }
.vts-glass-content p { font-size: 0.95rem; color: var(--vts-new-text); line-height: 1.5; }
.vts-glass-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.vts-glass-chips span { background: rgba(255, 255, 255, 0.7); color: var(--vts-new-slate); padding: 8px 14px; border-radius: 10px; font-size: 0.82rem; font-weight: 700; width: max-content; }

/* ── WHY CHOOSE US CARDS ── */
.vts-new-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vts-new-feat-card { background: var(--vts-new-white); border: 1px solid #f1f5f9; padding: 32px; border-radius: 20px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s; }
.vts-new-feat-card:hover { transform: translateY(-5px); border-color: var(--vts-new-pink-mid); }
.vts-new-feat-icon { width: 46px; height: 46px; background: var(--vts-new-pink); font-size: 1.4rem; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; }

/* ── 3. COMBINED TWO COLUMN SPLIT LAYOUT ── */
.vts-split-pricing-global { background: #fffcfd; border-top: 1px solid rgba(225, 29, 72, 0.04); border-bottom: 1px solid rgba(225, 29, 72, 0.04); }
.vts-split-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.vts-split-desc { font-size: 0.95rem; color: var(--vts-new-text); margin: 8px 0 20px; }

.vts-compact-price-box { background: var(--vts-white); border: 2px solid var(--vts-new-red); border-radius: 20px; padding: 32px; position: relative; box-shadow: 0 15px 40px rgba(225, 29, 72, 0.05); }
.vts-new-price-badge { position: absolute; top: -12px; left: 24px; background: var(--vts-new-red); color: var(--vts-new-white); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 3px 12px; border-radius: 99px; }
.vts-compact-price-box h3 { font-size: 1.45rem; font-weight: 900; color: var(--vts-new-slate); }
.vts-price-placeholder-text { font-size: 0.88rem; line-height: 1.6; color: var(--vts-new-text); margin: 12px 0; }

.vts-new-pbtn { display: block; text-align: center; background: var(--vts-new-slate); color: var(--vts-new-white); padding: 13px; border-radius: 10px; font-weight: 800; font-size: 0.88rem; transition: background 0.25s, transform 0.25s; }
.vts-new-pbtn:hover { background: var(--vts-new-red); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(225, 29, 72, 0.2); }

/* Global Navigation Components */
.vts-new-network-counter { display: flex; gap: 16px; margin: 20px 0; }
.vts-new-net-pill { background: var(--vts-new-pink); padding: 12px 20px; border-radius: 14px; flex: 1; text-align: center; }
.vts-new-net-pill strong { display: block; font-size: 1.85rem; color: var(--vts-new-red); }
.vts-new-net-pill span { font-size: 0.8rem; font-weight: 700; color: var(--vts-new-slate); }

.vts-new-geo-tabs { display: flex; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 12px; }
.vts-geo-btn { background: transparent; border: none; padding: 8px 16px; font-size: 0.85rem; font-weight: 700; color: var(--vts-new-text); cursor: pointer; position: relative; font-family: inherit; }
.vts-geo-btn.active { color: var(--vts-new-red); }
.vts-geo-btn.active::after { content: ''; position: absolute; bottom: -13px; left: 0; right: 0; height: 2px; background: var(--vts-new-red); }

.vts-geo-panel { display: none; }
.vts-geo-panel.active { display: block; }

.vts-geo-scrollable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 252px; overflow-y: auto; padding-right: 4px; }
.vts-geo-scrollable-grid::-webkit-scrollbar { width: 4px; }
.vts-geo-scrollable-grid::-webkit-scrollbar-thumb { background: var(--vts-new-pink-mid); border-radius: 99px; }

.vts-geo-panel a { display: flex; align-items: center; background: #f8fafc; border: 1px solid #e2e8f0; padding: 10px 12px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; color: var(--vts-new-slate); transition: all 0.2s; }
.vts-geo-panel a::before { content: ''; width: 5px; height: 5px; background: var(--vts-new-red); border-radius: 50%; margin-right: 8px; }
.vts-geo-panel a:hover { border-color: var(--vts-new-red); color: var(--vts-new-red); background: #fff; }

/* ── 4. BRAND ENQUIRY WORKSPACE LAYOUT ── */
.vts-new-enquiry-box { background: var(--vts-new-slate); border-radius: 32px; padding: 52px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; color: var(--vts-new-white); }

/* Custom Vector Frame placeholder matching highlighted red box outline in image_601e04.jpg */
.vts-enquiry-graphic-frame {
    width: 100%;
    aspect-ratio: 1.3 / 1;
    border: 2px dashed rgba(225, 29, 72, 0.45);
    border-radius: 18px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    display: grid;
    place-items: center;
}
.vts-graphic-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--vts-new-red);
    filter: blur(50px);
    opacity: 0.3;
    animation: glowShift 6s ease-in-out infinite alternate;
}
.vts-graphic-core-content { position: relative; z-index: 2; text-align: center; }
.vts-g-icon { font-size: 2.5rem; margin-bottom: 8px; animation: floatIcon 4s ease-in-out infinite; }
.vts-graphic-core-content span { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.vts-form-meta-note { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 16px; }
.vts-form-meta-note small { color: var(--vts-new-pink-mid); font-weight: 700; font-size: 0.8rem; }

.vts-new-form-wrapper { background: var(--vts-new-white); padding: 36px; border-radius: 24px; color: var(--vts-new-slate); box-shadow: 0 20px 45px rgba(0,0,0,0.18); }
.vts-aligned-lead-form { display: grid; gap: 16px; }
.vts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vts-form-field { display: flex; flex-direction: column; gap: 6px; }
.vts-form-field label { font-size: 0.8rem; font-weight: 800; }
.vts-req { color: var(--vts-new-red); }

.vts-aligned-lead-form input, .vts-aligned-lead-form select, .vts-aligned-lead-form textarea { width: 100%; min-height: 46px; border: 1px solid #dbe3ef; background: #f8fafc; padding: 10px 14px; border-radius: 12px; font-family: inherit; font-size: 0.88rem; outline: none; transition: all 0.2s; }
.vts-aligned-lead-form textarea { resize: vertical; min-height: 80px; }
.vts-aligned-lead-form input:focus, .vts-aligned-lead-form select:focus, .vts-aligned-lead-form textarea:focus { border-color: var(--vts-new-red); background: var(--vts-new-white); box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08); }

/* ── SLEEK MICRO ROBOT CAPTCHA INTERACTIVE BLOCK ── */
.vts-mini-robot-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 290px;
}
.vts-robot-flex { display: flex; align-items: center; gap: 10px; }
.vts-mini-robot-card .form-check-input { width: 18px; height: 18px; margin: 0; accent-color: var(--vts-new-red); cursor: pointer; }
.vts-mini-robot-card .form-check-label { font-size: 0.82rem; font-weight: 700; color: #1e293b; cursor: pointer; user-select: none; }
.vts-captcha-logo { width: 26px; height: 26px; background-image: url('https://www.gstatic.com/recaptcha/api2/logo_48.png'); background-size: contain; background-repeat: no-repeat; position: relative; }

.vts-modern-submit { width: 100%; min-height: 50px; background: linear-gradient(135deg, var(--vts-new-red), #ff5c7a); color: var(--vts-new-white); border: 0; border-radius: 999px; font-weight: 900; text-transform: uppercase; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.vts-modern-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3); }

/* KEYFRAMES */
@keyframes liquidDistortionMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(35px, 25px) scale(1.18) rotate(10deg); }
}
@keyframes glowShift {
    0% { transform: translate(-20px, -10px); }
    100% { transform: translate(20px, 15px); }
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .vts-new-grid, .vts-split-grid, .vts-new-enquiry-box { grid-template-columns: 1fr; gap: 36px; }
    .vts-new-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .vts-geo-scrollable-grid { grid-template-columns: repeat(2, 1fr); }
    .vts-form-row { grid-template-columns: 1fr; }
    .vts-new-enquiry-box { padding: 24px; }
}
@media (max-width: 480px) {
    .vts-geo-scrollable-grid { grid-template-columns: 1fr; }
}
/* =========================================================================
   FUNCTIONAL POPUP MODAL ARCHITECTURE & SYSTEM TOAST CODES
   ========================================================================= */

.vts-lead-modal[hidden],
.vt-toast[hidden] {
    display: none !important;
}

.vts-lead-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: vtsPopupFade 0.3s ease-out forwards;
}

.vts-lead-modal-box {
    width: min(460px, 100%);
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: translateY(20px);
    animation: vtsPopupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vts-lead-modal-top {
    padding: 34px 26px 25px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.vts-lead-check {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #2563eb;
    font-size: 40px;
    font-weight: 900;
}

.vts-lead-modal-top h3 {
    margin: 0 0 7px;
    font-size: 25px;
    font-weight: 900;
}

.vts-lead-modal-top p,
.vts-lead-modal-body p {
    margin: 0;
    line-height: 1.65;
}

.vts-lead-modal-body {
    padding: 26px;
    color: #1e293b;
}

.vts-lead-modal-body h4 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
}

.vts-lead-modal-body p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.vts-lead-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.vts-lead-actions a,
.vts-lead-actions button {
    border: 0;
    border-radius: 999px;
    padding: 11px 24px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vts-lead-actions button {
    color: #ffffff;
    background: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.vts-lead-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.vts-lead-actions a {
    color: #16a34a;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
}

.vts-lead-actions a:hover {
    transform: translateY(-1px);
    background: #d1fae5;
}

/* Toast Overlay Module styling */
.vt-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100000;
    max-width: 360px;
    min-width: 280px;
    padding: 14px 16px;
    background: #ffffff;
    border-left: 5px solid #e11d48;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.15);
}

.vt-toast strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 14px;
}

.vt-toast span {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

/* Core System Animation Rules */
@keyframes vtsPopupFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes vtsPopupSlide {
    from { transform: translateY(30px); }
    to { transform: translateY(0); }
}
/* ==========================================================================
   VTS PREMIUM ARCHITECTURE (EXCLUSIVELY SCOPED FOR WHATSAPP MARKETING PAGE)
   ========================================================================== */

.vts-premium-benefits-sec,
.vts-premium-global-sec,
.vts-premium-faq-sec {
    padding: 90px 0;
    position: relative;
    background: #fff;
}

.vts-premium-global-sec {
    background: #f8fafc;
}

/* SLEEK MINI PILLS */
.vts-premium-gtop-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0 35px;
    flex-wrap: wrap;
}

.vts-premium-gpill {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: #475569;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vts-premium-gpill strong {
    color: #e11d48;
    font-weight: 800;
}

/* MODERN GLOBAL PRESENCE GRID LAYOUT */
.vts-premium-gbox {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.vts-premium-gsidebar {
    background: #fafafa;
    padding: 24px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vts-premium-gtags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vts-premium-gtag-btn {
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vts-premium-gtag-btn:hover,
.vts-premium-gtag-btn.active {
    background: #e11d48;
    border-color: #e11d48;
    color: #fff;
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.2);
}

.vts-premium-gsearch-wrap input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s ease;
}

.vts-premium-gsearch-wrap input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.08);
}

.vts-premium-gcontent {
    padding: 30px;
    background: #fff;
}

.vts-premium-gpanel {
    display: none;
}

.vts-premium-gpanel.active {
    display: block;
}

.vts-premium-ggrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.vts-premium-ggrid a {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s ease;
}

.vts-premium-ggrid a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.vts-premium-ggrid a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

/* BENEFITS CARDS DESIGN */
.vts-premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.vts-premium-bcard {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vts-premium-bcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(225, 29, 72, 0.2);
}

.vts-premium-bico {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.vts-premium-bcard h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.vts-premium-bcard p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
}

/* INTERACTIVE ACCORDION FAQ SYSTEM */
.vts-premium-faq-wrapper {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vts-premium-faq-item {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.vts-premium-faq-trigger {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.96rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    font-family: inherit;
    gap: 15px;
}

.vts-premium-faq-trigger:hover {
    background: #fafafa;
    color: #e11d48;
}

.vts-premium-faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: #94a3b8;
    transition: transform 0.25s ease;
}

.vts-premium-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.vts-premium-faq-body p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
}

.vts-premium-faq-item.active {
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.04);
}

.vts-premium-faq-item.active .vts-premium-faq-icon {
    transform: rotate(45deg);
    color: #e11d48;
}

/* RESPONSIVE CONTROL MEDIA QUERIES */
@media (max-width: 1024px) {
    .vts-premium-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vts-premium-gbox {
        grid-template-columns: 1fr;
    }
    .vts-premium-gsidebar {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .vts-premium-gtags {
        flex-direction: row;
    }
}

@media (max-width: 640px) {
    .vts-premium-benefits-grid {
        grid-template-columns: 1fr;
    }
    .vts-premium-gtags {
        flex-direction: column;
    }
    .vts-premium-gcontent {
        padding: 16px;
    }
    .vts-premium-ggrid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   VTS COVERSAGE UI V2: MODERN MATRIX SYSTEM (NON-CONFLICTING GLOBAL)
   ========================================================================== */

.vts-v2-coverage-sec {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

/* Micro Small Sleek Pills */
.vts-v2-micro-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.vts-v2-stat-pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.vts-v2-stat-pill span {
    color: #e11d48;
    font-weight: 800;
}

/* Search Workspace Input */
.vts-v2-search-container {
    max-width: 580px;
    margin: 0 auto 40px;
}

.vts-v2-search-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.vts-v2-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}

/* Block Containers */
.vts-v2-matrix-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.vts-v2-matrix-block:last-child {
    margin-bottom: 0;
}

.vts-v2-matrix-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #e2e8f0;
}

.vts-v2-matrix-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.vts-v2-matrix-head h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.vts-v2-matrix-head p {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 2px;
}

/* Native Matrix Grid Cells */
.vts-v2-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 8px;
}

.vts-v2-matrix-grid a {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.18s ease;
}

/* Check Dot logic for domestic items */
#vtsV2IndiaGrid a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.vts-v2-matrix-grid a span {
    margin-right: 8px;
    font-size: 1.05rem;
    line-height: 1;
}

.vts-v2-matrix-grid a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.05);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .vts-v2-matrix-block {
        padding: 20px;
    }
    .vts-v2-matrix-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
/* ==========================================================================
   VTS SEO COMPACT DIRECTORY: HIGH-DENSITY NATIVE POOL (INDEX SAFE)
   ========================================================================== */

.vts-seo-compact-sec {
    padding: 70px 0;
    background: #f8fafc;
    position: relative;
}

/* Compact Search Box */
.vts-seo-search-wrap {
    max-width: 500px;
    margin: 0 auto 35px;
}

.vts-seo-search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.vts-seo-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.06);
}

/* Clean Wrapper Container */
.vts-seo-directory-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

/* Small Sub-Headings */
.vts-seo-group-header {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

/* Dynamic Pool Setup - Fits more content in less vertical space */
.vts-seo-links-pool {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vts-seo-links-pool a {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s ease;
}

/* Small Green Indicator Dot for Domestic Hubs */
#vtsSeoIndiaPool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}

.vts-seo-links-pool a span {
    margin-right: 5px;
    font-size: 0.95rem;
}

.vts-seo-links-pool a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Responsive Scaling */
@media (max-width: 640px) {
    .vts-seo-directory-wrapper {
        padding: 16px;
    }
    .vts-seo-links-pool a {
        padding: 5px 10px;
        font-size: 0.76rem;
    }
}
/* ==========================================================================
   VTS SEO COMPACT DIRECTORY: PIXEL-PERFECT SYMMETRIC GRID (FIXED BASELINES)
   ========================================================================== */

.vts-seo-compact-sec {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

/* Fixed Centered Search Input Layout with Left Padding Icon Adjustment */
.vts-seo-search-wrap {
    max-width: 550px;
    margin: 0 auto 40px;
    position: relative;
}

.vts-seo-search-input {
    width: 100%;
    padding: 14px 20px 14px 45px; /* Added left padding for search icon room */
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

/* Absolute Positioning for the Search Glass to prevent input squeeze */
.vts-seo-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}

/* Master Transparent Container Box */
.vts-seo-directory-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

/* Group Section Header Alignment */
.vts-seo-group-header {
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fixed Sized Auto-Grid Setup */
.vts-seo-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

#vtsSeoIndiaPool {
    margin-bottom: 0;
}

/* Flex Container with Strict Middle Center Alignment */
.vts-seo-links-pool a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Uniform starting baseline */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Exact Baseline Balance for Indian Grid Dots */
#vtsSeoIndiaPool a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center; /* Forces vertical centering relative to text height */
}

/* Flag Icon Formatting & Uniform Metric Scale */
.vts-seo-links-pool a span {
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hover Accent Upgrades */
.vts-seo-links-pool a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.06);
}

/* Responsive Adaptive Sizing Layouts */
@media (max-width: 1024px) {
    .vts-seo-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .vts-seo-directory-wrapper {
        padding: 20px;
    }
    .vts-seo-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }
    .vts-seo-links-pool a {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}
/* ==========================================================================
   VTS ULTRA-COMPACT UNIFORM COVERAGE DIRECTORY (PERFECT ALIGNMENT)
   ========================================================================== */

.vts-seo-compact-sec {
    padding: 60px 0; /* Compact sectional heights */
    background: #f8fafc;
}

/* Beautiful Fixed Width Search Input - Absolute positioning for glass icon */
.vts-seo-search-wrap {
    max-width: 550px;
    margin: 0 auto 30px;
    position: relative;
}

.vts-seo-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px; /* Uniform room layout for search glass */
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.vts-seo-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.06);
}

.vts-seo-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
}

/* Slick Directory Border Wrapper Box */
.vts-seo-directory-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

/* Uniform Headers */
.vts-seo-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

/* Symmetrical Grid Auto-Fill for Compact Display */
.vts-seo-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 8px; /* Strict micro gap */
    margin-bottom: 30px;
}

#vtsSeoIndiaPool {
    margin-bottom: 0;
}

/* Flat & Identical Link Layouts for Countries & Cities */
.vts-seo-links-pool a {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 9px 14px; /* Shrunk padding to make the section smaller */
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s ease;
}

/* Mandating Uniform Green Dot Bullet across both pools natively */
.vts-seo-links-pool a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #00c96b; /* Perfect baseline dot center */
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-seo-links-pool a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-1px);
}

/* Micro Responsive Adjustments */
@media (max-width: 768px) {
    .vts-seo-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: SIDE-BY-SIDE HIGH DENSITY DIRECTORY GRID
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 70px 0;
    background: #f8fafc;
    position: relative;
}

/* Wide Structured Search Bar Setup with Dynamic Vector Placement */
.vts-v3-search-wrap {
    max-width: 550px;
    margin: 0 auto 35px;
    position: relative;
}

.vts-v3-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.vts-v3-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.06);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
}

/* Master Side-by-Side Split Workspace Architecture */
.vts-v3-side-by-side-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% split layout precisely */
    gap: 25px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

/* Column Isolation Blocks */
.vts-v3-column-block {
    display: flex;
    flex-direction: column;
}

/* Clean Linear Sub Headers */
.vts-v3-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

/* High-Density Grid Structure (3 Columns Inside Each Split Segment) */
.vts-v3-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 8px;
}

/* Minimal Uniform Clean Link Micro-Cards */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Uniform Green Dot Bullets for Both Framework Columns Natively */
.vts-v3-links-pool a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    background: #fff;
    border-color: #e11d48;
    color: #e11d48;
    transform: translateY(-1px);
}

/* Responsive Auto-Collapse Stack on Tablets and Mobiles */
@media (max-width: 991px) {
    .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr; /* Drops into normal vertical flow safely */
        gap: 35px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .vts-v3-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 6px;
    }
    .vts-v3-links-pool a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: HYPER-COMPACT MINIMAL DIRECTORY (ZERO WASTE)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 40px 0; /* Minimal section height padding */
    background: #f8fafc;
}

/* Micro-Sized Clean Wide Search Box Layout */
.vts-v3-search-wrap {
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
}

.vts-v3-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.15s ease;
}

.vts-v3-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.05);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Flat Side-by-Side Borderless Workspace Box */
.vts-v3-side-by-side-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Rigid 50/50 clean split screen setup */
    gap: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.vts-v3-column-block {
    display: flex;
    flex-direction: column;
}

/* Slick Tiny Line Group Headers */
.vts-v3-group-header {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f1f5f9;
}

/* Ultra Compact High-Density Grid (4 columns inside each split frame) */
.vts-v3-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 6px 4px; /* Micro gaps maximizing space conservation */
}

/* Ultra Sleek Minimal Text Links (No background boxes, just raw clean links) */
.vts-v3-links-pool a {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 4px 2px; /* Strip padding entirely */
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: color 0.12s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Uniform Micro Dot Core Tracking Bullets */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #00c96b; /* Consistent native aesthetic accent */
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    color: #e11d48;
    background: transparent;
}

/* Mobile Adaptive Fluidity */
@media (max-width: 868px) {
    .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr; /* Safely stacks vertically on tight mobile frames */
        gap: 20px;
        padding: 16px;
    }
    .vts-v3-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: HYPER-COMPACT MINIMAL DIRECTORY (ZERO WASTE)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 40px 0; /* Minimal section height padding */
    background: #f8fafc;
}

/* Micro-Sized Clean Wide Search Box Layout */
.vts-v3-search-wrap {
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
}

.vts-v3-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.15s ease;
}

.vts-v3-search-input:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.05);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Flat Side-by-Side Borderless Workspace Box */
.vts-v3-side-by-side-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Rigid 50/50 clean split screen setup */
    gap: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.vts-v3-column-block {
    display: flex;
    flex-direction: column;
}

/* Slick Tiny Line Group Headers */
.vts-v3-group-header {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f1f5f9;
}

/* Ultra Compact High-Density Grid (4 columns inside each split frame) */
.vts-v3-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 6px 4px; /* Micro gaps maximizing space conservation */
}

/* Ultra Sleek Minimal Text Links (No background boxes, just raw clean links) */
.vts-v3-links-pool a {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 4px 2px; /* Strip padding entirely */
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: color 0.12s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Uniform Micro Dot Core Tracking Bullets */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #00c96b; /* Consistent native aesthetic accent */
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    color: #e11d48;
    background: transparent;
}

/* Mobile Adaptive Fluidity */
@media (max-width: 868px) {
    .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr; /* Safely stacks vertically on tight mobile frames */
        gap: 20px;
        padding: 16px;
    }
    .vts-v3-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
/* ==========================================================================
   VTS PREMIUM COVERSAGE SYSTEM V3: DARK ROSE VELVET EXTENSION (NO OVERLAP)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 80px 0;
    background: linear-gradient(135deg, #4c0519 0%, #1c0008 100%); /* Deep luxurious dark pink theme */
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Abstract Floating Elements (Balls) */
.vts-v3-bg-ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-ball-left {
    width: 450px;
    height: 450px;
    left: -150px;
    top: -50px;
}
.vts-v3-ball-right {
    width: 500px;
    height: 500px;
    right: -100px;
    bottom: -100px;
}

/* Extra Typography Supports */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.7) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

/* Clean Custom Styled Wide Search Box Workspace */
.vts-v3-search-wrap {
    max-width: 550px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

.vts-v3-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vts-v3-search-input:focus {
    border-color: #e11d48;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
}

/* Premium Side-by-Side Semi-Transparent Workspace Box */
.vts-v3-side-by-side-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Solid stable half split design layout */
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.vts-v3-column-block {
    display: flex;
    flex-direction: column;
}

/* Crisp Header Divider Layers */
.vts-v3-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #f43f5e; /* Premium rose color tint */
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FIXED minmax WIDTH TO RESOLVE OVERLAPPING CONFLICTS COMPLETELY */
.vts-v3-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); /* Increased min-width constraints */
    gap: 8px;
}

/* Shrunk Link Cards Design Integration */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.18s ease;
    
    /* Anti-Squeeze Protection Settings */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Vertical Core Center Bullets Position Fixes */
.vts-v3-links-pool a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center; /* Forces direct vertical centering geometry */
}

.vts-v3-links-pool a:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* Responsive Adaptive Fluid Breakpoints */
@media (max-width: 991px) {
    .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .vts-v3-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 6px;
    }
    .vts-v3-links-pool a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: HYPER-COMPACT VELVET GLASS GRID (ANTI-OVERLAP)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 50px 0; /* Super tight padding for minimal section height */
    background: linear-gradient(135deg, #4c0519 0%, #1c0008 100%); /* Deep luxurious dark pink theme */
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Background Floating Balls for Design Depth */
.vts-v3-bg-ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.18) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-ball-left {
    width: 380px;
    height: 380px;
    left: -120px;
    top: -40px;
}
.vts-v3-ball-right {
    width: 420px;
    height: 420px;
    right: -80px;
    bottom: -80px;
}

/* Quick Utilities for Velvet Theme */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.6) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

/* Micro Wide Search Bar Workspace */
.vts-v3-search-wrap {
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.vts-v3-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.vts-v3-search-input:focus {
    border-color: #e11d48;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    pointer-events: none;
}

/* 2-Column Split Borderless Workspace Box */
.vts-v3-side-by-side-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Strict 50/50 clean split layout */
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.vts-v3-column-block {
    display: flex;
    flex-direction: column;
}

/* Tiny Linear Headers */
.vts-v3-group-header {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #f43f5e;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* WAPAS PURANA ULTRA-CHOTA PILL GRID SIZE (Fits 4 columns in each half) */
.vts-v3-links-pool {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); /* Back to crisp mini width */
    gap: 6px 4px;
}

/* Mini Compact Links with Overlap/Ghusna Protection */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 8px; /* Shrunk padding back to mini size */
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.15s ease;
    
    /* SOLUTION: Strict truncation controls to stop texts breaking layout boundaries */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Flat Bullet Core Alignment */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #00c96b;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center; /* Strict mathematical vertical center alignment */
}

.vts-v3-links-pool a:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #fff;
}

/* Mobile Responsive Adaptive Flow */
@media (max-width: 868px) {
    .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr; /* Stacks layout columns on small devices safely */
        gap: 20px;
        padding: 14px;
    }
    .vts-v3-links-pool {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
}
/* ==========================================================================
   VTS COVERSAGE SYSTEM V3: PREMIUM LIGHT CRIMSION 10-COLUMN SYMMETRIC GRID
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 85px 0;
    /* Upgraded to Premium Light Red / Coral Sunset Crimson Gradient */
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 50%, #450a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Light Glowing Red Shades */
.vts-v3-bg-shade {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.25) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-shade-left {
    width: 500px;
    height: 500px;
    left: -100px;
    top: -100px;
}
.vts-v3-shade-right {
    width: 550px;
    height: 550px;
    right: -50px;
    bottom: -100px;
}

/* Color Balance Extensions */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.75) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sleek Search Interface Layout */
.vts-v3-search-wrap {
    max-width: 550px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
}

.vts-v3-search-input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.vts-v3-search-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
}

/* Glassmorphic Unified Full Width Block Wrapper Box */
.vts-v3-side-by-side-wrapper {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 35px;
    position: relative;
    z-index: 2;
}

.vts-v3-full-width-block {
    width: 100%;
}

/* Clean Group Sub-Headings */
.vts-v3-group-header {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fca5a5; /* Light soft pastel red tint for legibility */
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* STRICT STABLE 10 COLUMNS DESKTOP UI GRID LAYER */
.vts-v3-grid-10-col {
    display: grid;
    grid-template-columns: repeat(10, 1fr) !important; /* Locks precisely into 10 symmetric tracks */
    gap: 8px;
}

/* Refined Shrunk High-Density Pill Link Items */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 8px;
    border-radius: 6px;
    font-size: 0.78rem; /* High-density micro text size */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.15s ease;
    
    /* Dynamic Clipping to eliminate overlapping */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Uniform Centered Tracking Bullets Across Both Arrays */
.vts-v3-links-pool a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #4ade80; /* Brighter micro green dot for red bg contrast */
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Smooth Fluid Scaling Breakpoints for Smaller Screens */
@media (max-width: 1400px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(6, 1fr) !important; /* Gracefully scale down to 6 tracks */
    }
}

@media (max-width: 1024px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(4, 1fr) !important; /* Scale down to 4 tracks on tablets */
    }
    .vts-v3-side-by-side-wrapper {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(2, 1fr) !important; /* Mobile adaptive grid tracking */
        gap: 6px;
    }
    .vts-v3-links-pool a {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: STRICT 10-COLUMN MATRIX GENERATOR (3X10 & 5X10)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 70px 0;
    /* Premium Light Red / Coral Sunset Crimson Gradient Background Layout */
    background: linear-gradient(135deg, #cc1f1f 0%, #881337 50%, #4c0519 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Light Glowing Red Decorative Background Shades */
.vts-v3-bg-shade {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.28) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-shade-left {
    width: 480px;
    height: 480px;
    left: -120px;
    top: -120px;
}
.vts-v3-shade-right {
    width: 520px;
    height: 520px;
    right: -80px;
    bottom: -120px;
}

/* Color Balance System Extensions */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.75) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sleek Wide Centered Search Workspace Layer */
.vts-v3-search-wrap {
    max-width: 550px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
}

.vts-v3-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.vts-v3-search-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Glassmorphic Full Width Split Box Container Block */
.vts-v3-side-by-side-wrapper {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.vts-v3-full-width-block {
    width: 100%;
}

/* Clean Pastel Red Divider Header Tags */
.vts-v3-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fca5a5;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FIXED DESKTOP STABLE GRID MAPPING ENGINE (FORCES PRECISELY 10 COLUMNS) */
.vts-v3-grid-10-col {
    display: grid !important;
    /* Locks design grid strictly inside exactly 10 horizontal cells tracking */
    grid-template-columns: repeat(10, 1fr) !important; 
    gap: 6px;
}

/* Compact Shrunk Unified Card/Pill Settings */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 6px;
    border-radius: 5px;
    font-size: 0.76rem; /* High-density clean text font scale */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.15s ease;
    
    /* Dynamic Layout Clipping System to eliminate boundaries overlapping */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Micro Green Bullet Tracking Points Center Geometry */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4ade80; /* High contrast vibrant green tone over red background layout */
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #cc1f1f;
}

/* Responsive Adaptive Viewports Matrix Scalers for Smaller Devices */
@media (max-width: 1400px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(6, 1fr) !important; /* Drops to clean 6 columns grid track */
    }
}

@media (max-width: 1024px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(4, 1fr) !important; /* Drops to stable 4 columns grid track */
    }
    .vts-v3-side-by-side-wrapper {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(2, 1fr) !important; /* Pure fluid mobile layout scaling */
        gap: 5px;
    }
    .vts-v3-links-pool a {
        padding: 6px 4px;
        font-size: 0.72rem;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: SIDE-BY-SIDE DOUBLE 10-COLUMN MATRIX UI (PERFECT)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 60px 0;
    /* Soft Light Crimson Red shades over dynamic subtle gradients */
    background: linear-gradient(135deg, #be123c 0%, #881337 50%, #4c0519 100%);
    position: relative;
    overflow: hidden;
}

/* Fluid Decorative Radial Lighting Shades */
.vts-v3-bg-shade {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.22) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-shade-left {
    width: 450px;
    height: 450px;
    left: -100px;
    top: -100px;
}
.vts-v3-shade-right {
    width: 450px;
    height: 450px;
    right: -100px;
    bottom: -100px;
}

/* Quick Formatting Elements */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.7) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sleek Search Container Layout */
.vts-v3-search-wrap {
    max-width: 520px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.vts-v3-search-input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vts-v3-search-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    pointer-events: none;
}

/* SIDE-BY-SIDE FLEX CONTAINER BOX WHATSAPP PAGE ONLY */
.vts-v3-side-by-side-wrapper {
    display: flex;
    flex-direction: column; /* Flow natively inside wrapper */
    gap: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    z-index: 2;
}

.vts-v3-full-width-block {
    width: 100%;
}

/* Headers Styling */
.vts-v3-group-header {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fecdd3; /* Light pink crisp text font color */
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* STRICT STABLE DESKTOP GRID GENERATOR FORCE FILTERING EXACTLY 10 COLUMNS */
.vts-v3-grid-10-col {
    display: grid !important;
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important; /* Strictly lock columns tracking into exactly 10 units width */
    gap: 6px 5px; /* Symmetrical internal capsule margins */
}

/* High Density Shrunk Compact Links Pool Cells */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 7px 4px; /* Shrunk padding down completely */
    border-radius: 5px;
    font-size: 0.74rem; /* Tiny pixel density to secure texts boundary limits */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.15s ease;
    
    /* Absolute Truncation protection to force elements into uniform horizontal bounds */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Centered High-Contrast Vibrant Active Bullets */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4ade80; /* Bright crisp tracking green point bullet */
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #be123c;
}

/* Responsive Adaptive Fluid Matrix Scaling Layers for Screen Squeezes */
@media (max-width: 1400px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important; /* Scale dynamically down to 6 tracks */
    }
}

@media (max-width: 1024px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* Scale down to 4 tracks on tablets viewports */
    }
    .vts-v3-side-by-side-wrapper {
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* Mobile adaptive display setup */
        gap: 5px;
    }
    .vts-v3-links-pool a {
        padding: 6px 4px;
        font-size: 0.7rem;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: SIDE-BY-SIDE DOUBLE 10-COLUMN MATRIX UI (STRICT)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 60px 0;
    /* Coral Light Red Gradient Shades Background */
    background: linear-gradient(135deg, #cc1f1f 0%, #881337 50%, #4c0519 100%);
    position: relative;
    overflow: hidden;
}

/* Fluid Decorative Background Lighting Shades */
.vts-v3-bg-shade {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.25) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-shade-left {
    width: 450px;
    height: 450px;
    left: -100px;
    top: -100px;
}
.vts-v3-shade-right {
    width: 450px;
    height: 450px;
    right: -100px;
    bottom: -100px;
}

/* Light Typography Balance Utilities */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.75) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sleek Wide Search Bar Workspace Setup */
.vts-v3-search-wrap {
    max-width: 550px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.vts-v3-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.vts-v3-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.vts-v3-search-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.vts-v3-search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Unified Semi-Transparent Container Box with Strict Alignment */
.vts-v3-side-by-side-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.vts-v3-full-width-block {
    width: 100%;
}

/* Headers Styling */
.vts-v3-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fca5a5;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* MANDATING EXACTLY 10 COLUMNS LAYOUT FOR DESKTOP DEVICES STRICTLY */
.vts-v3-grid-10-col {
    display: grid !important;
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important; /* Forces layout into exactly 10 horizontal cells tracking */
    gap: 6px;
}

/* Compact Shrunk Pill Items with Anti-Overlap Text Truncation */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 6px;
    border-radius: 5px;
    font-size: 0.76rem; /* High-density micro scale */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.15s ease;
    
    /* Strict layout clipping to eliminate text overflow */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Vibrant Contrast Green Tracking Points Bullets Center Geometry */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center; /* Mathematical vertical center baseline lock */
}

.vts-v3-links-pool a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #be123c;
}

/* Responsive Adaptive Sizing Scalers for Tablets and Mobiles */
@media (max-width: 1400px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important; /* Scale dynamically down to 6 columns track */
    }
}

@media (max-width: 1024px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* Scale down to 4 columns track on tablets */
    }
    .vts-v3-side-by-side-wrapper {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* Mobile adaptive 2 columns setup layout */
        gap: 5px;
    }
    .vts-v3-links-pool a {
        padding: 6px 4px;
        font-size: 0.72rem;
    }
}
/* ==========================================================================
   VTS PRICING STRIP: ULTRA-COMPACT FLOATING PINK RIBBON (INDEX SAFE)
   ========================================================================== */

.vts-v3-mini-pricing-strip {
    max-width: 100%;
    margin: 0 auto 25px;
    background: linear-gradient(90deg, rgba(244, 63, 94, 0.2) 0%, rgba(225, 29, 72, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* Micro Pulse Badge inside Strip */
.vts-v3-pstrip-badge {
    background: #e11d48;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
}

/* Core Informative Text alignment */
.vts-v3-pstrip-text {
    color: #ffffff;
    font-size: 0.86rem;
    line-height: 1.4;
    flex: 1;
}

.vts-v3-pstrip-text strong {
    color: #fca5a5; /* Soft pink accent text */
    font-weight: 700;
}

.vts-v3-pstrip-text span {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vts-v3-pstrip-text small {
    color: rgba(255, 255, 255, 0.65);
    margin-left: 6px;
    font-size: 0.78rem;
}

/* Compact Transparent CTA Link Button */
.vts-v3-pstrip-cta {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vts-v3-pstrip-cta:hover {
    background: #ffffff;
    color: #be123c;
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Mobile Fluid Downscaling adjustments */
@media (max-width: 768px) {
    .vts-v3-mini-pricing-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px;
    }
    .vts-v3-pstrip-text small {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    .vts-v3-pstrip-cta {
        width: 100%;
        text-align: center;
    }
}
/* ==========================================================================
   VTS COVERSAGE MODULE V3: SOLID DEEP ROSE VELVET COLOR REFINE (NO OVERLAP)
   ========================================================================== */

.vts-v3-compact-sec {
    padding: 70px 0;
    /* Upgraded to perfect Deep Dark Pink / Rose Velvet Gradient Base */
    background: linear-gradient(135deg, #9d174d 0%, #831843 50%, #4c0519 100%);
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Background Soft Floating Elements (Deep Crimson Shades) */
.vts-v3-bg-shade {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.22) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.vts-v3-shade-left {
    width: 480px;
    height: 480px;
    left: -120px;
    top: -120px;
}
.vts-v3-shade-right {
    width: 520px;
    height: 520px;
    right: -80px;
    bottom: -120px;
}

/* Extra Typography Supports */
.text-white { color: #ffffff !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.75) !important; }
.vts-v3-tag-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Full Width Split Box Container with Premium Dark Semi-Transparent Tint */
.vts-v3-side-by-side-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(0, 0, 0, 0.15); /* Slightly darker backing for high text contrast */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

/* Clean Group Sub-Headings */
.vts-v3-group-header {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fca5a5; /* Bright soft pink text accent color for dark velvet background */
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FIXED DESKTOP STABLE GRID MAPPING ENGINE (FORCES PRECISELY 10 COLUMNS) */
.vts-v3-grid-10-col {
    display: grid !important;
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important; 
    gap: 6px;
}

/* Compact Shrunk Unified Card/Pill Settings */
.vts-v3-links-pool a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06); /* Highly visible premium semi-transparent pills */
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 6px;
    border-radius: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.15s ease;
    
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Micro Green Bullet Tracking Points Center Geometry */
.vts-v3-links-pool a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4ade80; /* Vibrant emerald green bullet contrast tracking points */
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    align-self: center;
}

.vts-v3-links-pool a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #9d174d; /* Dynamic text shift to main dark pink tone on mouse hover */
}

/* Responsive Adaptive Viewports Matrix Scalers for Smaller Devices */
@media (max-width: 1400px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1024px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
    .vts-v3-side-by-side-wrapper {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .vts-v3-grid-10-col {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 5px;
    }
    .vts-v3-links-pool a {
        padding: 6px 4px;
        font-size: 0.72rem;
    }
}
/* ==========================================================================
   VTS PRICING SLAB CARD: COMPACT TRANSPARENT BOX LAYOUT (INDEX SAFE)
   ========================================================================== */

.vts-v4-pricing-slab-card {
    max-width: 100%;
    margin: 0 auto 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    padding: 22px 26px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header Context Parameters */
.vts-v4-slab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.vts-v4-slab-badge {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.vts-v4-pulse-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.vts-v4-slab-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    text-align: right;
    margin: 0;
}

/* 3 Column Linear Slabs Grid */
.vts-v4-slab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.vts-v4-slab-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.2s ease;
}

.vts-v4-slab-featured {
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.3);
}

.vts-v4-slab-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.vts-v4-tier {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.vts-v4-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
}

.vts-v4-price small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.vts-v4-limit {
    font-size: 0.76rem;
    font-weight: 700;
    color: #fca5a5; /* High contrast soft pink text accent color */
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Bottom Metric Info Layout */
.vts-v4-slab-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.vts-v4-footer-text {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.vts-v4-footer-text strong {
    color: #ffffff;
}

.vts-v4-slab-btn {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.vts-v4-slab-btn:hover {
    background: #ffffff;
    color: #b91c1c;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Fluid Layout Responsive Handlers */
@media (max-width: 991px) {
    .vts-v4-slab-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .vts-v4-slab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .vts-v4-slab-subtitle {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .vts-v4-slab-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .vts-v4-slab-btn {
        width: 100%;
        text-align: center;
    }
}
/* ==========================================================================
   VTS PRICING SLAB CARD: SOLID DEEP ROSE VELVET CONTAINER FIX (HIGH CONTRAST)
   ========================================================================== */

.vts-v4-pricing-slab-card {
    max-width: 100%;
    margin: 40px auto;
    /* White area se alag karne ke liye ab iska apna solid dark pink background hoga */
    background: linear-gradient(135deg, #9d174d 0%, #831843 50%, #4c0519 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 24px 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 35px rgba(76, 5, 25, 0.25); /* Elegant matching shadow shadow */
}

/* Header Text Visibility Fixes */
.vts-v4-slab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.vts-v4-slab-badge {
    background: #ffffff; /* High contrast bright white badge background */
    color: #9d174d; /* Dark Pink text font color */
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 5px;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.vts-v4-pulse-dot {
    width: 6px;
    height: 6px;
    background: #00c96b; /* Vibrant active green tracking points dot */
    border-radius: 50%;
    display: inline-block;
}

.vts-v4-slab-subtitle {
    color: rgba(255, 255, 255, 0.8) !important; /* Forces visible text */
    font-size: 0.85rem;
    text-align: right;
    margin: 0;
    font-weight: 500;
}

/* 3 Column Pricing Layout Cards Refine */
.vts-v4-slab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.vts-v4-slab-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.2s ease;
}

/* Featured center package card highlights */
.vts-v4-slab-featured {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.vts-v4-slab-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.vts-v4-tier {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff; /* Absolute pure text visibility white rules */
}

.vts-v4-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
}

.vts-v4-price small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.vts-v4-limit {
    font-size: 0.78rem;
    font-weight: 800;
    color: #fecdd3; /* Soft light text color for readability */
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 5px;
}

/* Footer Informative Elements Alignment */
.vts-v4-slab-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vts-v4-footer-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.vts-v4-footer-text strong {
    color: #ffffff;
}

/* White CTA Action Button Link */
.vts-v4-slab-btn {
    font-size: 0.8rem;
    font-weight: 800;
    color: #9d174d; /* Contrast background matching text token shift link */
    text-transform: uppercase;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.vts-v4-slab-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Fluid Layout Responsive Viewport Handlers */
@media (max-width: 991px) {
    .vts-v4-slab-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .vts-v4-slab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .vts-v4-slab-subtitle {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .vts-v4-slab-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .vts-v4-slab-btn {
        width: 100%;
        text-align: center;
    }
}
/* Responsive adjustments to securely bind side-by-side components grid */
@media (max-width: 991px) {
    .vts-split-pricing-section .vts-v3-side-by-side-wrapper {
        grid-template-columns: 1fr !important; /* Forces vertical stack on mobile screens securely */
        gap: 30px !important;
    }
}
/* ==========================================================================
   VTS PRICING RIBBON: ULTRA-COMPACT LIGHT PINK THEME STRIP (INDEX SAFE)
   ========================================================================== */

.vts-v6-pricing-ribbon-strip {
    max-width: 100%;
    margin: 30px auto;
    /* Clean Light Pink Gradient Base */
    background: linear-gradient(90deg, #fff1f2 0%, #ffe4e6 100%); 
    border: 1px solid #fecdd3;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.04);
}

.vts-v6-ribbon-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

/* Crimson Alert Micro Badge inside Ribbon */
.vts-v6-ribbon-badge {
    background: #e11d48;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Core Description Parameters */
.vts-v6-ribbon-text {
    color: #334155; /* Dark slate text for high contrast on light pink */
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.vts-v6-ribbon-text strong {
    color: #be123c; /* Deep pinkish red text accent color */
    font-weight: 800;
}

.vts-v6-ribbon-text small {
    color: #64748b;
    margin-left: 8px;
    font-size: 0.78rem;
}

/* Premium Dark Pink Action Link Button */
.vts-v6-ribbon-btn {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    background: #e11d48;
    border: 1px solid #e11d48;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vts-v6-ribbon-btn:hover {
    background: #be123c;
    border-color: #be123c;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

/* Responsive Fluid Adaptive Layout Handlers */
@media (max-width: 991px) {
    .vts-v6-pricing-ribbon-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    .vts-v6-ribbon-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .vts-v6-ribbon-text small {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    .vts-v6-ribbon-btn {
        width: 100%;
        text-align: center;
    }
}
/* ==========================================================================
   VTS PRICING RIBBON: MODERN LIGHT PINK PREMIUM STRIP (INDEX SAFE)
   ========================================================================== */

.vts-v6-pricing-ribbon-strip {
    max-width: 100%;
    margin: 40px auto;
    /* Soft premium subtle light pink aesthetic colors */
    background: linear-gradient(90deg, #fff5f5 0%, #ffe4e6 100%);
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vts-v6-pricing-ribbon-strip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.08);
}

.vts-v6-ribbon-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

/* Crimson Alert Symmetrical Micro Badge */
.vts-v6-ribbon-badge {
    background: #e11d48;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.15);
}

/* Core Description Parameters text hierarchy */
.vts-v6-ribbon-text {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.vts-v6-ribbon-text strong {
    color: #be123c; /* Deep rich rose accent */
    font-weight: 800;
}

.vts-v6-ribbon-text small {
    color: #64748b;
    margin-left: 8px;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Premium Crimson Action Link Button with Slide Interaction */
.vts-v6-ribbon-btn {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    background: #e11d48;
    border: 1px solid #e11d48;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.12);
}

.vts-v6-ribbon-btn:hover {
    background: #be123c;
    border-color: #be123c;
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(225, 29, 72, 0.22);
}

/* Mobile Fluid Adaptive Layout Layout Overrides */
@media (max-width: 991px) {
    .vts-v6-pricing-ribbon-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
    }
    .vts-v6-ribbon-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .vts-v6-ribbon-text small {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        width: fit-content;
    }
    .vts-v6-ribbon-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}
@media (max-width: 991px) {
    .vts-v5-split-grid {
        grid-template-columns: 1fr !important;
    }
    .vts-v5-container {
        padding: 0 22px !important;
    }
}
.dropdown-menu,
        .mob-sub {
            display: none;
        }

        html.vts-menu-booting .dropdown-menu,
        html.vts-menu-booting .mob-sub {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        html.vts-disable-menu-hover .dropdown-wrap:hover .dropdown-menu,
        html.vts-disable-menu-hover .dropdown-wrap:focus-within .dropdown-menu {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            transform: translateX(-50%) translateY(10px) !important;
        }

        .mobile-overlay[hidden],
        .mobile-menu[hidden] {
            display: none !important;
        }



    <style id="vts-form-settings-css">
        .vts-lead-modal[hidden],
        .vt-toast[hidden] {
            display: none !important;
        }

        .vts-lead-modal {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            background: rgba(15, 23, 42, .72);
        }

        .vts-lead-modal-box {
            width: min(460px, 100%);
            background: #fff;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 30px 90px rgba(0, 0, 0, .30);
            text-align: center;
        }

        .vts-lead-modal-top {
            padding: 34px 26px 25px;
            color: #fff;
            background: linear-gradient(135deg, #2563eb, #06b6d4);
        }

        .vts-lead-check {
            width: 74px;
            height: 74px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #fff;
            color: #2563eb;
            font-size: 40px;
            font-weight: 900;
        }

        .vts-lead-modal-top h3 {
            margin: 0 0 7px;
            font-size: 25px;
            font-weight: 900;
        }

        .vts-lead-modal-top p,
        .vts-lead-modal-body p {
            margin: 0;
            line-height: 1.65;
        }

        .vts-lead-modal-body {
            padding: 26px;
        }

        .vts-lead-modal-body h4 {
            margin: 0 0 8px;
            color: #111827;
            font-size: 19px;
            font-weight: 900;
        }

        .vts-lead-modal-body p {
            color: #64748b;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .vts-lead-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .vts-lead-actions a,
        .vts-lead-actions button {
            border: 0;
            border-radius: 999px;
            padding: 11px 20px;
            font-weight: 800;
            text-decoration: none;
            cursor: pointer;
            font-family: inherit;
        }

        .vts-lead-actions button {
            color: #fff;
            background: #2563eb;
        }

        .vts-lead-actions a {
            color: #16a34a;
            background: #ecfdf5;
            border: 1px solid #bbf7d0;
        }

        .vt-toast {
            position: fixed;
            top: 24px;
            right: 24px;
            z-index: 100000;
            max-width: 360px;
            min-width: 280px;
            padding: 14px 16px;
            background: #fff;
            border-left: 5px solid #dc3545;
            border-radius: 16px;
            box-shadow: 0 20px 55px rgba(15, 23, 42, .18);
        }

        .vt-toast strong {
            display: block;
            margin-bottom: 4px;
            color: #111827;
            font-size: 14px;
        }

        .vt-toast span {
            color: #6b7280;
            font-size: 13px;
            line-height: 1.5;
        }

        .form-msg.vts-is-success {
            color: #16a34a;
        }

        .form-msg.vts-is-error {
            color: #dc3545;
        }



        /* Contact form design fix: makes Bootstrap-like form classes work even if Bootstrap CSS is not loaded */
        .vts-enquiry-card {
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, .9);
            border-radius: 28px;
            padding: clamp(24px, 4vw, 42px);
            box-shadow: 0 28px 80px rgba(15, 23, 42, .10);
        }

        .vts-enquiry-card h3 {
            margin: 0 0 10px;
            color: #111827;
            font-size: clamp(24px, 3vw, 31px);
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -.03em;
            text-transform: uppercase;
        }

        .vts-enquiry-card>p {
            margin: 0 0 24px;
            color: #64748b;
            font-size: 16px;
            line-height: 1.6;
        }

        .vts-enquiry-card .lead-form,
        .vts-enquiry-card .vt-lead-form {
            margin-top: 22px;
        }

        .vts-enquiry-card .row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 16px;
            margin: 0;
        }

        .vts-enquiry-card .col-md-6 {
            flex: 0 0 calc(50% - 8px);
            max-width: calc(50% - 8px);
            min-width: 0;
        }

        .vts-enquiry-card .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
            min-width: 0;
        }

        .vts-enquiry-card .form-label {
            display: block;
            margin: 0 0 8px;
            color: #111827;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 800;
        }

        .vts-enquiry-card .vt-required {
            color: #ef4444;
        }

        .vts-enquiry-card .form-control,
        .vts-enquiry-card .form-select {
            width: 100%;
            min-height: 52px;
            display: block;
            box-sizing: border-box;
            border: 1px solid #dbe3ef;
            border-radius: 16px;
            background-color: #f8fafc;
            color: #111827;
            padding: 13px 16px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            outline: none;
            box-shadow: none;
            transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
            appearance: auto;
        }

        .vts-enquiry-card .form-control::placeholder {
            color: #94a3b8;
            opacity: 1;
        }

        .vts-enquiry-card .form-control:focus,
        .vts-enquiry-card .form-select:focus {
            border-color: #2563eb;
            background-color: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
        }

        .vts-enquiry-card .vt-message-box {
            min-height: 128px;
            resize: vertical;
        }

        .vts-enquiry-card .vt-char-count {
            margin-top: 8px;
            color: #64748b;
            font-size: 13px;
            font-weight: 700;
            text-align: right;
        }

        .vts-enquiry-card .vt-char-count.limit-near {
            color: #f59e0b;
        }

        .vts-enquiry-card .vt-char-count.limit-full {
            color: #dc2626;
        }

        .vts-enquiry-card .vt-human-check {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 52px;
            padding: 13px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            background: #f8fafc;
        }

        .vts-enquiry-card .form-check-input {
            width: 18px;
            height: 18px;
            margin: 0;
            accent-color: #2563eb;
            flex: 0 0 auto;
        }

        .vts-enquiry-card .form-check-label {
            color: #111827;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            line-height: 1.2;
        }

        .vts-enquiry-card .vt-submit-btn,
        .vts-enquiry-card .lead-submit-btn,
        .vts-enquiry-card .btn-primary {
            width: 100%;
            min-height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, #2563eb, #06b6d4);
            color: #ffffff;
            padding: 14px 22px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: .01em;
            cursor: pointer;
            box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
            transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
        }

        .vts-enquiry-card .vt-submit-btn:hover,
        .vts-enquiry-card .lead-submit-btn:hover,
        .vts-enquiry-card .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 42px rgba(37, 99, 235, .34);
        }

        .vts-enquiry-card .vt-submit-btn:disabled,
        .vts-enquiry-card .lead-submit-btn:disabled,
        .vts-enquiry-card .btn-primary:disabled {
            opacity: .7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .vts-enquiry-card .vt-small-note {
            margin-top: 12px;
            color: #64748b;
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
        }

        .vts-enquiry-card .w-100 {
            width: 100%;
        }

        @media (max-width: 767px) {
            .vts-enquiry-card {
                padding: 24px 18px;
                border-radius: 24px;
            }

            .vts-enquiry-card .col-md-6,
            .vts-enquiry-card .col-12 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .vts-enquiry-card .row {
                gap: 15px;
            }
        }

        @media (max-width: 575px) {
            .vt-toast {
                left: 16px;
                right: 16px;
                top: 16px;
                min-width: auto;
            }
        }
        @media (max-width: 991px) {
    .vts-v5-split-grid {
        grid-template-columns: 1fr !important;
    }
    .vts-v5-container {
        padding: 0 22px !important;
    }
}
/* ==========================================================================
   VTS FAQ UPGRADE MODULE V4: PREMIUM ASYMMETRIC SYSTEM (INDEX SAFE)
   ========================================================================== */

.vts-faq-v4-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.vts-faq-v4-layout-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Symmetrical asymmetrical split screen */
    gap: 50px;
    align-items: start;
}

/* Left Sidebar Sticky Context */
.vts-faq-v4-sidebar-info {
    position: sticky;
    top: 100px;
}

.vts-faq-v4-sidebar-info .section-title {
    margin-top: 10px;
    text-align: left !important;
}

.vts-faq-v4-sidebar-info .section-sub {
    text-align: left !important;
    margin-top: 12px;
    max-width: 100%;
}

/* Micro Supportive Support Card Layout */
.vts-faq-v4-support-card {
    margin-top: 30px;
    background: #fff5f5;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.02);
}

.vts-faq-v4-s-ico {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vts-faq-v4-support-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
}

.vts-faq-v4-support-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0 0 12px;
}

.vts-faq-v4-support-card a {
    font-size: 0.82rem;
    font-weight: 800;
    color: #be123c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vts-faq-v4-support-card a:hover {
    color: #e11d48;
}

/* RIGHT COLUMN ACCORDION INTERACTION OVERRIDES */
.vts-faq-v4-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vts-premium-faq-item {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
    transition: all 0.2s ease-in-out;
}

.vts-premium-faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    font-family: inherit;
    gap: 20px;
    transition: all 0.15s ease;
}

.vts-premium-faq-trigger:hover {
    background: #fafafa;
    color: #e11d48;
}

.vts-premium-faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: #94a3b8;
    transition: transform 0.25s ease-in-out;
}

/* Sub text dynamic body spacing adjustments */
.vts-premium-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
}

.vts-premium-faq-body p {
    padding: 0 24px 22px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Active Highlight States layout rules */
.vts-premium-faq-item.active {
    border-color: rgba(225, 29, 72, 0.25);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.03);
    background: #fffdfd;
}

.vts-premium-faq-item.active .vts-premium-faq-icon {
    transform: rotate(45deg);
    color: #e11d48;
}

/* Responsive Adaptive Fluid Queries Framework */
@media (max-width: 991px) {
    .vts-faq-v4-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vts-faq-v4-sidebar-info {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    .vts-premium-faq-trigger {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .vts-premium-faq-body p {
        padding: 0 18px 18px;
        font-size: 0.84rem;
    }
}
/* Dropdown Fix Code */
html .dropdown-wrap.open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}
/* ── COMPACT GLOBAL PRESENCE SECTION (LIGHT PINKISH GRADIENT ARCHITECTURE) ── */
#presence.vts-v3-compact-sec {
    padding: 35px 0 !important;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fecdd3 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Background elements scale down */
#presence .vts-v3-bg-shade {
    opacity: 0.15 !important;
}

/* Section Header styling resets */
#presence .section-tag.vts-v3-tag-light {
    background: #e11d48 !important;
    color: #ffffff !important;
    padding: 3px 10px !important;
    border-radius: 4px;
    font-size: 0.72rem !important;
    text-transform: uppercase;
    font-weight: 700;
}

#presence .section-title {
    color: #9f1239 !important;
    margin: 8px 0 !important;
    font-size: 1.85rem !important;
    font-weight: 900 !important;
}

#presence .section-title span {
    color: #e11d48 !important;
}

#presence .section-sub {
    color: #4c0519 !important;
    font-size: 0.85rem !important;
    max-width: 580px;
    margin: 0 auto !important;
    opacity: 0.85;
}

/* Search Box wrapper scaling */
#presence .vts-v3-search-wrap {
    margin: 15px auto !important;
    max-width: 480px !important;
}

#presence .vts-v3-search-input {
    width: 100%;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    border: 1px solid #fda4af !important;
    background: #ffffff !important;
    color: #1e293b !important;
    font-size: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.03);
}

#presence .vts-v3-search-input::placeholder {
    color: #94a3b8 !important;
}

/* Balanced Split-Layout Grid */
#presence .custom-split-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    align-items: stretch !important;
    margin-top: 10px;
}

/* White Content blocks */
#presence .vts-v3-full-width-block {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #fecdd3 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.04) !important;
}

#presence .vts-v3-group-header {
    color: #9f1239 !important;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    border-bottom: 1px dashed #fecdd3 !important;
    padding-bottom: 6px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
}

/* High-Density Inner Matrix (3 Columns Grid with Scrollbar) */
#presence .vts-v3-links-pool {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    overflow-y: auto !important;
    max-height: 200px !important; /* height is short and precise */
    padding-right: 6px !important;
    flex: 1 !important;
}

/* Elegant Custom Pink Scrollbar */
#presence .vts-v3-links-pool::-webkit-scrollbar {
    width: 4px;
}
#presence .vts-v3-links-pool::-webkit-scrollbar-track {
    background: rgba(225, 29, 72, 0.02);
    border-radius: 10px;
}
#presence .vts-v3-links-pool::-webkit-scrollbar-thumb {
    background: #fca5a5;
    border-radius: 10px;
}
#presence .vts-v3-links-pool::-webkit-scrollbar-thumb:hover {
    background: #e11d48;
}

/* Compact Location Anchors/Buttons */
#presence .vts-v3-links-pool a {
    font-size: 0.76rem !important;
    padding: 5px 8px !important;
    background: #ffffff !important;
    border: 1px solid #ffe4e6 !important;
    border-radius: 5px !important;
    color: #4c0519 !important;
    text-decoration: none !important;
    display: block !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Anchor Interactive States */
#presence .vts-v3-links-pool a:hover {
    background: #fff1f2 !important;
    border-color: #fca5a5 !important;
    color: #e11d48 !important;
    transform: translateY(-1px);
}

/* Counter Node */
#presence .vts-counter {
    font-size: 0.7rem !important;
    color: #be123c !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    text-align: right !important;
    letter-spacing: 0.3px;
}

/* Responsive Viewports */
@media (max-width: 991px) {
    #presence .vts-v3-links-pool {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #presence .custom-split-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    #presence .vts-v3-links-pool {
        max-height: 170px !important;
    }
}
/* ── COMPACT GLOBAL PRESENCE SECTION FIXED ARCHITECTURE ── */
#presence.vts-v3-compact-sec {
    padding: 40px 0 !important;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fecdd3 100%) !important;
    position: relative;
    overflow: hidden;
}

#presence .vts-v3-bg-shade {
    opacity: 0.15 !important;
}

#presence .section-tag.vts-v3-tag-light {
    background: #e11d48 !important;
    color: #ffffff !important;
    padding: 4px 10px !important;
    border-radius: 4px;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    font-weight: 700;
}

#presence .section-title {
    color: #9f1239 !important;
    margin: 10px 0 !important;
    font-size: 1.9rem !important;
    font-weight: 900 !important;
}

#presence .section-title span {
    color: #e11d48 !important;
}

#presence .section-sub {
    color: #4c0519 !important;
    font-size: 0.88rem !important;
    max-width: 600px;
    margin: 0 auto 15px auto !important;
    opacity: 0.85;
}

#presence .vts-v3-search-wrap {
    margin: 0 auto 20px auto !important;
    max-width: 480px !important;
}

#presence .vts-v3-search-input {
    width: 100%;
    padding: 10px 14px !important;
    border-radius: 6px !important;
    border: 1px solid #fda4af !important;
    background: #ffffff !important;
    color: #1e293b !important;
    font-size: 0.88rem !important;
}

/* Structural Layout Fixes */
#presence .custom-split-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    align-items: start !important; /* Fixes unexpected vertical squeezing */
}

#presence .vts-v3-full-width-block {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #fecdd3 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.04) !important;
    display: block !important; /* Simplified display to avoid layout bugs */
}

#presence .vts-v3-group-header {
    color: #9f1239 !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    border-bottom: 1px dashed #fecdd3 !important;
    padding-bottom: 8px !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px !important;
}

/* Scrollable Container with Fixed Height Layout */
#presence .vts-v3-links-pool {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    overflow-y: auto !important;
    max-height: 250px !important; /* Controlled heights */
    padding-right: 5px !important;
}

/* Custom Scrollbars */
#presence .vts-v3-links-pool::-webkit-scrollbar {
    width: 5px;
}
#presence .vts-v3-links-pool::-webkit-scrollbar-track {
    background: rgba(225, 29, 72, 0.02);
}
#presence .vts-v3-links-pool::-webkit-scrollbar-thumb {
    background: #fca5a5;
    border-radius: 10px;
}

/* Link tag elements fix */
#presence .vts-v3-links-pool a {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    padding: 8px 10px !important; /* Generous padding to prevent shrinking */
    background: #ffffff !important;
    border: 1px solid #ffe4e6 !important;
    border-radius: 6px !important;
    color: #4c0519 !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 36px !important; /* Enforces correct heights */
    box-sizing: border-box !important;
    transition: all 0.2s ease;
}

#presence .vts-v3-links-pool a:hover {
    background: #fff1f2 !important;
    border-color: #fca5a5 !important;
    color: #e11d48 !important;
}

#presence .vts-counter {
    font-size: 0.75rem !important;
    color: #be123c !important;
    font-weight: 700 !important;
    margin-top: 15px !important;
    text-align: right !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #presence .vts-v3-links-pool {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #presence .custom-split-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
/* ── SPLIT SECTION MAIN BACKGROUND OPTIMIZATION ── */
.vts-v5-split-sec {
    padding: 60px 0 !important;
    /* Soft blending background from white-pinkish to micro delicate light green */
    background: linear-gradient(135deg, #fff1f2 0%, #fffbfb 40%, #f0fdf4 100%) !important;
}
/* ── PREMIUM MOVING GRADIENT CARD EFFECTS ── */
@keyframes vtsGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vts-premium-moving-card {
    background: linear-gradient(-45deg, #ffb3b3, #ccffcc, #ffe6e6, #e6ffe6);
    background-size: 400% 400%;
    animation: vtsGradientMove 12s ease infinite;
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 275px;
    position: relative;
    overflow: hidden;
}
.vts-isolated-client-page {
    /* Puraane dark red gradient ko is soft smooth blending gradient se change karein */
    background: linear-gradient(180deg, #ffe4e6 0%, #fff1f2 40%, #ffffff 100%);
    padding: 90px 0;
    font-family: 'Roboto', system-ui, sans-serif;
    color: #1e293b;
    overflow: hidden;
}

        .vts-client-main-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .vts-section-header-block {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 35px;
        }

        .vts-mini-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: red;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 14px;
            border-radius: 99px;
            margin-bottom: 12px;
        }

        /* High-Contrast Heading Typography from image_a24f15.png */
        .vts-main-contrast-heading {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 900;
            color: #0f172a; /* High density clean title text color */
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .vts-main-contrast-heading .vts-highlight-text {
            color: #e11d48; /* Crimson focus highlight parameter */
        }

        .vts-sub-contrast-desc {
            font-size: 1.05rem;
            color: #475569;
            margin-top: 12px;
            line-height: 1.6;
            font-weight: 500;
        }

        /* ── LIQUID PINK METRIC GLASS CARDS (Symmetrical Scaling) ── */
        .vts-liquid-pink-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
        }

        @media (max-width: 1100px) { .vts-liquid-pink-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .vts-liquid-pink-grid { grid-template-columns: 1fr; } }

        .vts-glass-client-card {
            position: relative;
            background: rgba(255, 240, 243, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 26px 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(190, 18, 60, 0.03);
            overflow: hidden;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
        }

        .vts-glass-client-card:hover {
            transform: translateY(-4px);
            border-color: #ff5c7a;
            box-shadow: 0 18px 35px rgba(190, 18, 60, 0.08);
        }

        .vts-glass-glow-layer {
            position: absolute;
            inset: -40px;
            background: radial-gradient(circle at 15% 15%, #ffb3c1 0%, transparent 55%),
                        radial-gradient(circle at 85% 85%, #e11d48 0%, transparent 65%);
            opacity: 0.28;
            z-index: 1;
            filter: blur(12px);
        }

        .vts-card-real-content { position: relative; z-index: 2; }
        .vts-card-emoji { font-size: 2.2rem; margin-bottom: 10px; }
        .vts-card-real-content h3 { font-size: 1.18rem; font-weight: 900; color: #0f172a; margin: 0 0 4px; }
        .vts-card-real-content span { display: block; font-size: 0.74rem; font-weight: 800; color: #64748b; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 12px; }

        .vts-loc-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 5px;
        }
        .tag-in { background: #fef3c7; color: #92400e; }
        .tag-int { background: #dbeafe; color: #1e40af; }
        .tag-new { background: #dcfce7; color: #166534; }

        /* ── SPLIT CONTAINER WORKSPACE DEPLOYMENT (No Cuts / No Image Cropping) ── */
        .vts-beautiful-form-workspace {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 48px;
            background: #ffffff;
            border-radius: 28px;
            padding: 45px;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.03);
            align-items: center;
            margin-bottom: 85px;
        }

        @media (max-width: 991px) {
            .vts-beautiful-form-workspace { grid-template-columns: 1fr; padding: 24px; }
            .vts-secure-image-box { order: -1; }
        }

        .vts-premium-form-panel { display: grid; gap: 18px; }
        .vts-field-row { display: flex; flex-direction: column; gap: 6px; }
        .vts-beautiful-label { font-size: 0.85rem; font-weight: 800; color: #0f172a; }

        .vts-beautiful-input {
            width: 100%;
            min-height: 48px;
            border: 1px solid #dbe3ef;
            background: #f8fafc;
            padding: 12px 16px;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.92rem;
            font-weight: 500;
            outline: none;
            transition: all 0.2s ease;
        }

        .vts-beautiful-input:focus {
            border-color: #e11d48;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
        }

        textarea.vts-beautiful-input { resize: vertical; min-height: 95px; }
        .vts-character-counter { font-size: 0.75rem; text-align: right; color: #64748b; font-weight: 600; }
        
        .vts-robot-verification-box { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
        .vts-robot-verification-box input { width: 18px; height: 18px; accent-color: #e11d48; cursor: pointer; }
        .vts-robot-verification-box label { font-size: 0.86rem; font-weight: 700; color: #334155; cursor: pointer; }

        .vts-premium-submit-btn {
            width: 100%;
            min-height: 52px;
            background: linear-gradient(135deg, #e11d48, #ff5c7a);
            color: #ffffff;
            border: 0;
            border-radius: 999px;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.9rem;
            cursor: pointer;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 25px rgba(225, 29, 72, 0.18);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .vts-premium-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(225, 29, 72, 0.26); }

        /* Safe Graphics Boxing (Strict Image Preservation Loop) */
        .vts-secure-image-box {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fafafa;
            border-radius: 20px;
            padding: 12px;
            box-sizing: border-box;
            border: 1px dashed rgba(225, 29, 72, 0.12);
        }

        .vts-secure-image-box img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: contain; /* Prevents cuts or text cropping inside the picture */
            border-radius: 14px;
        }

        /* ── REVIEWS AUTO RUNNING TRACK WITH LIGHT BASE BACKGROUND ── */
        .vts-light-marquee-window {
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.65); /* Elegant ultra-light transparent sheen */
            border-radius: 20px;
            border: 1px solid rgba(255, 240, 243, 0.8);
        }

        .vts-marquee-infinite-track {
            display: flex;
            width: max-content;
            animation: vtsContinuousMarqueeMove 40s linear infinite;
        }

        .vts-marquee-infinite-track:hover { animation-play-state: paused; }

        @keyframes vtsContinuousMarqueeMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .vts-clean-review-card {
            width: 360px;
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 16px;
            padding: 30px;
            margin-right: 24px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
            flex-shrink: 0;
        }

        .vts-review-stars-row { color: #fbbf24; font-size: 1rem; margin-bottom: 4px; }
        .vts-review-quote { font-size: 2.8rem; color: #e11d48; font-family: Georgia, serif; line-height: 1; height: 28px; }
        .vts-review-desc { font-size: 0.9rem; color: #475569; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
        .vts-review-user { display: flex; align-items: center; gap: 12px; }

        .vts-user-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        .av-b { background: #2563eb; }
        .av-g { background: #059669; }
        .av-p { background: #7c3aed; }

        .vts-review-user h4 { font-size: 0.94rem; font-weight: 800; color: #0f172a; margin: 0; }
        .vts-review-user small { font-size: 0.78rem; color: #64748b; }
    .vts-isolated-loc-page-wrapper {
            /* Light crimson red combined beautifully with an isolated micro soft green tint shade blend */
            background: linear-gradient(135deg, #ffe4e6 0%, #fff1f2 35%, #f0fdf4 85%, #ffffff 100%);
            padding: 80px 0;
            font-family: 'Roboto', system-ui, sans-serif;
            color: #1e293b;
            overflow: hidden;
        }

        .vts-loc-main-container {
            max-width: 1420px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .vts-loc-header-block {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 35px;
        }

        .vts-loc-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #be123c;
            background: rgba(225, 29, 72, 0.08);
            padding: 5px 14px;
            border-radius: 99px;
            margin-bottom: 12px;
        }

        .vts-loc-main-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 900;
            color: #0f172a;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .vts-loc-main-title span { color: #be123c; }
        .vts-loc-sub-desc { font-size: 1rem; color: #475569; margin-top: 10px; font-weight: 500; }

        /* ── IDENTICAL PINK ELECTRIC ROUNDED RECTANGLE MATRIX ── */
        .vts-unified-symmetric-matrix {
            display: grid;
            gap: 8px; /* Safe micro spacing to prevent shrinking */
            width: 100%;
        }

        /* Strict Stable 10 Columns Layer Across Both Matrix Containers */
        .vts-matrix-10-col {
            grid-template-columns: repeat(10, minmax(0, 1fr)) !important; 
        }

        @media (max-width: 1300px) {
            .vts-matrix-10-col { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
        }
        @media (max-width: 768px) {
            .vts-matrix-10-col { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
        }
        @media (max-width: 480px) {
            .vts-matrix-10-col { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
        }

        .vts-location-pill {
            background: #ffffff;
            border: 1.5px solid rgba(255, 92, 122, 0.25);
            border-radius: 8px;
            padding: 12px 6px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(190, 18, 60, 0.01);
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            min-height: 44px;
            box-sizing: border-box;
        }

        .vts-location-pill span {
            font-size: 0.82rem;
            font-weight: 700;
            color: #334155;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .vts-location-pill:hover {
            transform: translateY(-2px);
            background: #fff0f3;
            border-color: #ff2a5b;
            box-shadow: 0 0 10px rgba(255, 42, 91, 0.2);
        }
        .vts-location-pill:hover span { color: #be123c; }

        /* Symmetrical integration for International items */
        .int-pill { border-color: rgba(225, 92, 122, 0.25); } 
        .int-pill:hover {
            background: #fff0f3;
            border-color: #ff2a5b;
            box-shadow: 0 0 10px rgba(255, 42, 91, 0.2);
        }

        /* ── SEPARATE BOTTOM TWO-COLUMN WORKSPACE (Screenshot 2026-06-29 122122.jpg Companion Layout) ── */
        .vts-loc-bottom-split-workspace {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: #ffffff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 15px 45px rgba(15, 23, 42, 0.03);
            border: 1px solid #ffe4e6;
            margin-top: 20px;
        }

        @media (max-width: 991px) {
            .vts-loc-bottom-split-workspace { grid-template-columns: 1fr; padding: 24px; }
            .vts-loc-image-panel { order: -1; }
        }

        /* Functional Form panels styling isolation */
        .vts-loc-form-panel {
            background: #ffffff;
            display: grid;
            gap: 15px;
        }

        .vts-loc-field { display: flex; flex-direction: column; gap: 5px; }
        .vts-loc-field label { font-size: 0.84rem; font-weight: 800; color: #0f172a; }

        .vts-loc-input {
            width: 100%;
            min-height: 46px;
            border: 1px solid #dbe3ef;
            background: #f8fafc;
            padding: 11px 14px;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s ease;
        }
        .vts-loc-input:focus {
            border-color: #be123c;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.08);
        }

        textarea.vts-loc-input { min-height: 75px; resize: vertical; }
        .vts-loc-counter { font-size: 0.72rem; text-align: right; color: #64748b; font-weight: 600; }

        .vts-loc-robot-box { display: flex; align-items: center; gap:8px;margin-bottom: 24px; }
        .vts-loc-robot-box input { width: 16px; height: 16px; accent-color: #be123c; cursor: pointer; }
        .vts-loc-robot-box label { font-size: 0.84rem; font-weight: 700; color: #475569; }

        .vts-loc-submit-btn {
            width: 100%;
            min-height: 48px;
            background: linear-gradient(135deg, #be123c, #e11d48);
            color: #ffffff;
            border: 0;
            border-radius: 8px;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.9rem;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(190, 18, 60, 0.15);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .vts-loc-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(190, 18, 60, 0.22); }

        /* Perfect Scaling Preservation Box Layers (Zero image cutting out) */
        .vts-loc-image-panel {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fafafa;
            border-radius: 14px;
            padding: 12px;
            box-sizing: border-box;
            border: 1px dashed rgba(225, 29, 72, 0.1);
        }

        .vts-loc-image-panel img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: contain; /* Enforces sharp responsive non-cropped bounding alignment bounds */
            border-radius: 8px;
        }
     /* =========================================================================
   COMPLETELY ISOLATED SHARP CRIMSON & PINKISH WHITE THEMATIC CSS LAYER
   ========================================================================= */
.vts-about-main-wrapper {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    color: #1e293b;
    overflow: hidden;
}

.vts-about-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

.vts-about-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(159, 18, 63, 0.08);
    color: #9f1239;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    border-left: 3px solid #9f1239;
}

.vts-about-heading {
    font-size: 2.3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.8px;
}

.vts-about-heading span {
    color: #9f1239;
}

/* Section 1: Row Settings Layout */
.vts-about-hero-sec {
    padding: 75px 0;
    background: linear-gradient(135deg, #efefef 0%, #fafafa 60%, rgba(239, 68, 68, 0.04) 100%);
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
}

.vts-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vts-about-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.vts-about-extended-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 28px 0;
}

.vts-about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vts-about-mstat {
    border-top: 2px solid #9f1239;
    padding-top: 10px;
}

.vts-about-mstat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: #9f1239;
    line-height: 1;
}

.vts-about-mstat span {
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
}

.vts-about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.vts-about-img-frame {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(159, 18, 63, 0.06);
    border: 1px solid rgba(159, 18, 63, 0.12);
    transition: transform 0.4s ease;
}

.vts-about-img-frame:hover {
    transform: scale(1.015);
}

.vts-about-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section 2: Cards Features Core Blocks */
.vts-about-why-sec {
    padding: 75px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
}

.vts-about-center-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

.vts-about-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.vts-about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vts-about-feat-card {
    background: #fafafa;
    border: 1px solid rgba(159, 18, 63, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vts-about-feat-card:hover {
    background: #ffffff;
    border-color: rgba(159, 18, 63, 0.2);
    box-shadow: 0 15px 35px rgba(159, 18, 63, 0.07);
    transform: translateY(-4px);
}

.vts-about-feat-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.vts-about-feat-card:hover .vts-about-feat-icon {
    transform: rotate(10deg) scale(1.1);
}

.vts-about-feat-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.vts-about-feat-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

/* Section 3: Conversions Form Section Workspace */
.vts-about-split-form-sec {
    padding: 75px 0;
    background: linear-gradient(135deg, #fafafa 0%, #efefef 100%);
}

.vts-about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.vts-about-moving-slab {
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(159, 18, 63, 0.25);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.01);
}

.vts-about-slab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
    margin-bottom: 12px;
}

.vts-about-slab-badge {
    background: #9f1239;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.vts-about-pulse-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: vtsPulse 1.8s infinite ease-in-out;
}

@keyframes vtsPulse {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.vts-about-slab-subtitle {
    color: #9f1239 !important;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 700;
}

.vts-about-slab-body-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

.vts-about-form-panel-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Forms Input Settings Compatibility Layer */
.vts-about-loc-form-panel {
    background: #ffffff;
    border: 1px solid rgba(159, 18, 63, 0.15);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(159, 18, 63, 0.04);
}

.vts-about-loc-form-panel h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 6px 0;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.vts-about-loc-form-panel p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 24px 0;
}

.vts-loc-field {
    margin-bottom: 16px;
}

.vts-loc-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.vts-loc-input {
    width: 100%;
    padding: 10px 14px;
    background: #fafafa;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #0f172a;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.vts-loc-input:focus {
    border-color: #9f1239;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(159, 18, 63, 0.06);
}

.vts-loc-counter {
    text-align: right;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
}

.vts-loc-robot-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    background: #fafafa;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.vts-loc-robot-box input[type="checkbox"] {
    accent-color: #9f1239;
    cursor: pointer;
}

.vts-loc-robot-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
}

.vts-loc-submit-btn {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #b91c1c 0%, #9f1239 100%);
    box-shadow: 0 4px 12px rgba(159, 18, 63, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vts-loc-submit-btn:hover {
    opacity: 0.95;
    box-shadow: 0 6px 18px rgba(159, 18, 63, 0.35);
    transform: translateY(-1px);
}

/* Fluid Breakpoints Settings */
@media (max-width: 1024px) {
    .vts-about-container { padding: 0 24px; }
    .vts-about-grid, .vts-about-split-grid { grid-template-columns: 1fr; gap: 36px; }
    .vts-about-features-grid { grid-template-columns: 1fr; gap: 16px; }
}
/* =========================================================================
   COMPLETELY ISOLATED SHARP CRIMSON & PINKISH WHITE THEMATIC CSS LAYER
   ========================================================================= */
.vts-about-main-wrapper {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    color: #1e293b;
    overflow: hidden;
}

.vts-about-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

.vts-about-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(159, 18, 63, 0.08);
    color: #9f1239;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    border-left: 3px solid #9f1239;
}

.vts-about-heading {
    font-size: 2.3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.8px;
}

.vts-about-heading span {
    color: #9f1239;
}

/* Section 1 Styling Layout */
.vts-about-hero-sec {
    padding: 75px 0;
    background: linear-gradient(135deg, #efefef 0%, #fafafa 60%, rgba(239, 68, 68, 0.04) 100%);
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
}

.vts-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vts-about-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.vts-about-extended-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 28px 0;
}

.vts-about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vts-about-mstat {
    border-top: 2px solid #9f1239;
    padding-top: 10px;
}

.vts-about-mstat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: #9f1239;
    line-height: 1;
}

.vts-about-mstat span {
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
}

.vts-about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.vts-about-img-frame {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(159, 18, 63, 0.06);
    border: 1px solid rgba(159, 18, 63, 0.12);
    transition: transform 0.4s ease;
}

.vts-about-img-frame:hover {
    transform: scale(1.015);
}

.vts-about-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section 2 Styling Blocks */
.vts-about-why-sec {
    padding: 75px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
}

.vts-about-center-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

.vts-about-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.vts-about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vts-about-feat-card {
    background: #fafafa;
    border: 1px solid rgba(159, 18, 63, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vts-about-feat-card:hover {
    background: #ffffff;
    border-color: rgba(159, 18, 63, 0.2);
    box-shadow: 0 15px 35px rgba(159, 18, 63, 0.07);
    transform: translateY(-4px);
}

.vts-about-feat-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.vts-about-feat-card:hover .vts-about-feat-icon {
    transform: rotate(10deg) scale(1.1);
}

.vts-about-feat-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.vts-about-feat-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

/* Section 3: Form Grid Section */
.vts-about-split-form-sec {
    padding: 75px 0;
    background: linear-gradient(135deg, #fafafa 0%, #efefef 100%);
}

.vts-about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.vts-about-moving-slab {
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(159, 18, 63, 0.25);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.01);
}

.vts-about-slab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 18, 63, 0.08);
    margin-bottom: 12px;
}

.vts-about-slab-badge {
    background: #9f1239;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.vts-about-pulse-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: vtsPulse 1.8s infinite ease-in-out;
}

@keyframes vtsPulse {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.vts-about-slab-subtitle {
    color: #9f1239 !important;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 700;
}

.vts-about-slab-body-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

.vts-about-form-panel-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Card Custom Red Override Extensions */
.vts-about-form-panel-wrapper .vts-enquiry-card {
    border: 1px solid rgba(159, 18, 63, 0.15);
    box-shadow: 0 28px 80px rgba(159, 18, 63, 0.04);
}

.vts-about-form-panel-wrapper .btn-primary {
    background: linear-gradient(135deg, #b91c1c 0%, #9f1239 100%) !important;
    box-shadow: 0 16px 34px rgba(159, 18, 63, 0.2) !important;
}

.vts-about-form-panel-wrapper .btn-primary:hover {
    box-shadow: 0 20px 42px rgba(159, 18, 63, 0.35) !important;
}

.vts-about-form-panel-wrapper .form-control:focus, 
.vts-about-form-panel-wrapper .form-select:focus {
    border-color: #9f1239 !important;
    box-shadow: 0 0 0 4px rgba(159, 18, 63, 0.1) !important;
}

.vts-about-form-panel-wrapper .form-check-input {
    accent-color: #9f1239 !important;
}

/* Fluid Breakpoints Settings */
@media (max-width: 1024px) {
    .vts-about-container { padding: 0 24px; }
    .vts-about-grid, .vts-about-split-grid { grid-template-columns: 1fr; gap: 36px; }
    .vts-about-features-grid { grid-template-columns: 1fr; gap: 16px; }
}
/* ==========================================================================
   VTS SITEMAP SCOPED ARCHITECTURE (Zero Interference Design)
   ========================================================================== */

.vts-sitemap-grid-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
    margin-top: 20px !important;
}

.vts-sitemap-column {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vts-sitemap-column:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04) !important;
}

.vts-sitemap-card-header {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 18px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.vts-sitemap-header-ico {
    font-size: 1.25rem !important;
}

.vts-sitemap-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.vts-sitemap-links-list li {
    margin-bottom: 10px !important;
    padding-left: 12px !important;
    position: relative !important;
}

/* Custom Bullet Mark */
.vts-sitemap-links-list li::before {
    content: "•" !important;
    color: #cbd5e1 !important;
    font-weight: bold !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
}

.vts-sitemap-links-list li a {
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
    line-height: 1.4 !important;
}

.vts-sitemap-links-list li a:hover {
    color: #ef4444 !important;
    text-decoration: underline !important;
}

/* Balanced Double Columns inside JavaScript Lists */
.vts-split-columns {
    columns: 2 !important;
    column-gap: 16px !important;
}

.vts-split-columns li {
    break-inside: avoid !important;
    display: block !important;
}

/* ==========================================================================
   RESPONSIVE SCALING ADAPTATIONS
   ========================================================================== */

@media (max-width: 1024px) {
    .vts-sitemap-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .vts-sitemap-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .vts-split-columns {
        columns: 1 !important;
    }
    .vts-intent-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
/* ── ISOLATED LOCATIONS FORM STYLES (No Global Overlaps) ── */
.vts-loc-bottom-split-workspace {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 60px;
}

.vts-isolated-form-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    max-width: 550px;
}

.vts-form-main-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 0 6px 0;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.vts-form-sub-title {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.vts-custom-field-group {
    margin-bottom: 18px;
    position: relative;
}

.vts-custom-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.vts-custom-input-ctrl {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background-color: #f8fafc;
    color: #111827;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

.vts-custom-input-ctrl:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.vts-custom-select {
    appearance: auto;
    cursor: pointer;
}

.vts-custom-textarea {
    min-height: 90px;
    resize: vertical;
}

.vts-custom-char-counter {
    font-size: 0.78rem;
    color: #64748b;
    text-align: right;
    margin-top: 4px;
    font-weight: 600;
}

.vts-custom-robot-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    margin-bottom: 22px;
}

.vts-custom-check-input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    cursor: pointer;
    margin: 0;
}

.vts-custom-robot-text {
    font-size: 0.88rem;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
}

.vts-custom-submit-btn {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #c23732, #d40606);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(212, 6, 6, 0.2);
    transition: all 0.2s ease;
}

.vts-custom-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(212, 6, 6, 0.3);
}

.vts-custom-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vts-loc-image-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vts-loc-image-panel img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .vts-loc-bottom-split-workspace {
        flex-direction: column;
        gap: 40px;
    }
    .vts-isolated-form-card {
        max-width: 100%;
    }
}
/* ==========================================================================
   V TOUCH SOLUTIONS - LIGHT LIQUID CLOUD CLIENT CARDS
   ========================================================================== */

/* Grid container layout fallback */
.vts-isolated-client-page .vts-liquid-pink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

/* Base Card Style: Soft Cloud Glassmorphism */
.vts-isolated-client-page .vts-glass-client-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(163, 177, 198, 0.25), 
                inset 0 1px 2px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.4);
    padding: 35px 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.4s ease;
}

/* Resetting the default background layer */
.vts-isolated-client-page .vts-glass-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.88;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

/* Typography adjustments for perfect contrast on light fluid colors */
.vts-isolated-client-page .vts-card-real-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.vts-isolated-client-page .vts-card-real-content h3 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 14px 0 4px 0;
}

.vts-isolated-client-page .vts-card-real-content span {
    color: #475569;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   INDIVIDUAL SMOOTH LIQUID MESH GENERATION (HAR CARD KA ALAG COLOR)
   -------------------------------------------------------------------------- */

/* Card 1: Toyota (Pastel Soft Coral Ripple) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(1) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 15%, #ff9a9e 0%, transparent 55%),
                radial-gradient(circle at 85% 85%, #fecfef 0%, transparent 55%),
                linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
}

/* Card 2: HDFC Bank (Pastel Lilac Cloud) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(2) .vts-glass-glow-layer {
    background: radial-gradient(circle at 20% 20%, #a1c4fd 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, #c2e9fb 0%, transparent 60%),
                linear-gradient(135deg, #f0f4ff 0%, #e6dcff 100%);
}

/* Card 3: Zoom Car (Minty Meadow Glow) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(3) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 20%, #8ddad3 0%, transparent 55%),
                radial-gradient(circle at 85% 80%, #b8f2cb 0%, transparent 55%),
                linear-gradient(135deg, #f2fdf5 0%, #e1fbe7 100%);
}

/* Card 4: Triptels (Soft Aero Sky Mesh) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(4) .vts-glass-glow-layer {
    background: radial-gradient(circle at 25% 15%, #81d4fa 0%, transparent 50%),
                radial-gradient(circle at 75% 85%, #b3e5fc 0%, transparent 55%),
                linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Card 5: PropNest (Warm Peach Sherbet) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(5) .vts-glass-glow-layer {
    background: radial-gradient(circle at 20% 20%, #ffb199 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, #ffdec2 0%, transparent 55%),
                linear-gradient(135deg, #fff7f2 0%, #ffebe0 100%);
}

/* Card 6: QuickMart (Light Lavender-Berry Cloud) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(6) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 15%, #e0c3fc 0%, transparent 60%),
                radial-gradient(circle at 85% 85%, #8ec5fc 0%, transparent 60%),
                linear-gradient(135deg, #fbf7ff 0%, #f3e8ff 100%);
}

/* Card 7: MediCare Plus (Clean Hydro Seafoam) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(7) .vts-glass-glow-layer {
    background: radial-gradient(circle at 20% 15%, #4facfe 0%, transparent 55%),
                radial-gradient(circle at 80% 85%, #00f2fe 0%, transparent 55%),
                linear-gradient(135deg, #eefcfd 0%, #d8f8fa 100%);
}

/* Card 8: EduReach (Minimalist Slate Mist) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(8) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 25%, #cfd9df 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, #e2ebf0 0%, transparent 50%),
                linear-gradient(135deg, #f4f5f7 0%, #e9ebf0 100%);
}

/* --------------------------------------------------------------------------
   HOVER & INTERACTION EFFECTS (FLUID SHIFTING)
   -------------------------------------------------------------------------- */

.vts-isolated-client-page .vts-glass-client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.25),
                inset 0 1px 3px rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Hover basic par background colors ke liquid circles wave move karengi */
.vts-isolated-client-page .vts-glass-client-card:hover .vts-glass-glow-layer {
    transform: scale(1.12) rotate(3deg);
    opacity: 1;
}

/* Location labels and badging cleanup */
.vts-isolated-client-page .vts-loc-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.vts-isolated-client-page .tag-in { background: rgba(255, 255, 255, 0.8); color: #0f172a; }
.vts-isolated-client-page .tag-int { background: rgba(15, 23, 42, 0.06); color: #1e293b; }
.vts-isolated-client-page .tag-new { background: #fef08a; color: #713f12; }
/* ==========================================================================
   V TOUCH SOLUTIONS - ULTRA-PREMIUM SOFT LIQUID CLOUD SHEDDING CARDS
   ========================================================================== */

/* Grid container layout */
.vts-isolated-client-page .vts-liquid-pink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    padding: 24px 0;
}

/* Base Card Style: High-Blur Frosted Liquid Canvas */
.vts-isolated-client-page .vts-glass-client-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 34px rgba(148, 163, 184, 0.12), 
                inset 0 1px 3px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.35);
    padding: 38px 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
}

/* Enhanced Glow Layer with Multi-layered Smooth Color Shedding */
.vts-isolated-client-page .vts-glass-glow-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: 1;
    opacity: 0.82;
    filter: blur(30px); /* Seamless blend ke liye blur ko badhaya */
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

/* Typography Enhancements for Maximum Readability */
.vts-isolated-client-page .vts-card-real-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.vts-isolated-client-page .vts-card-real-content h3 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 16px 0 4px 0;
    letter-spacing: -0.02em;
}

.vts-isolated-client-page .vts-card-real-content span {
    color: #475569;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   FINE-TUNED LIQUID COLOR MESH SELECTIONS (PASTEL DYNAMIC FLOW)
   -------------------------------------------------------------------------- */

/* Card 1: Toyota (Blush Pink to Muted Tangerine Drop) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(1) .vts-glass-glow-layer {
    background: radial-gradient(circle at 10% 10%, rgba(255, 142, 146, 0.55) 0%, transparent 60%),
                radial-gradient(circle at 90% 90%, rgba(254, 219, 239, 0.7) 0%, transparent 60%),
                linear-gradient(135deg, #fff7f7 0%, #ffebeb 100%);
}

/* Card 2: HDFC Bank (Powder Blue to Velvet Lavender Mist) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(2) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 15%, rgba(161, 203, 253, 0.6) 0%, transparent 60%),
                radial-gradient(circle at 85% 85%, rgba(230, 210, 255, 0.65) 0%, transparent 60%),
                linear-gradient(135deg, #f3f6ff 0%, #eae3ff 100%);
}

/* Card 3: Zoom Car (Pale Emerald to Creamy Aloe Blend) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(3) .vts-glass-glow-layer {
    background: radial-gradient(circle at 10% 20%, rgba(132, 225, 216, 0.5) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, rgba(193, 245, 209, 0.65) 0%, transparent 60%),
                linear-gradient(135deg, #f1fdf6 0%, #def9e5 100%);
}

/* Card 4: Triptels (Soft Aero Sky to Ice Blue Fluid) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(4) .vts-glass-glow-layer {
    background: radial-gradient(circle at 20% 10%, rgba(129, 212, 250, 0.5) 0%, transparent 55%),
                radial-gradient(circle at 80% 90%, rgba(191, 235, 252, 0.6) 0%, transparent 60%),
                linear-gradient(135deg, #f0f8ff 0%, #daf0ff 100%);
}

/* Card 5: PropNest (Creamy Peach to Champagne Velvet) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(5) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 15%, rgba(255, 185, 163, 0.55) 0%, transparent 60%),
                radial-gradient(circle at 85% 85%, rgba(255, 230, 204, 0.7) 0%, transparent 60%),
                linear-gradient(135deg, #fffcf8 0%, #ffede0 100%);
}

/* Card 6: QuickMart (Plum Blossom to Soft Orchid Glow) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(6) .vts-glass-glow-layer {
    background: radial-gradient(circle at 10% 10%, rgba(231, 203, 252, 0.6) 0%, transparent 65%),
                radial-gradient(circle at 90% 90%, rgba(174, 214, 253, 0.55) 0%, transparent 60%),
                linear-gradient(135deg, #faf6ff 0%, #f0e1ff 100%);
}

/* Card 7: MediCare Plus (Crystal Aqua to Ocean Foam Drift) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(7) .vts-glass-glow-layer {
    background: radial-gradient(circle at 20% 10%, rgba(90, 195, 254, 0.45) 0%, transparent 60%),
                radial-gradient(circle at 80% 90%, rgba(120, 246, 254, 0.5) 0%, transparent 60%),
                linear-gradient(135deg, #f0fcfe 0%, #d4f7fa 100%);
}

/* Card 8: EduReach (Minimalist Pearl Grey to Mist Satin) */
.vts-isolated-client-page .vts-glass-client-card:nth-child(8) .vts-glass-glow-layer {
    background: radial-gradient(circle at 15% 20%, rgba(215, 224, 230, 0.6) 0%, transparent 55%),
                radial-gradient(circle at 85% 80%, rgba(234, 240, 245, 0.65) 0%, transparent 55%),
                linear-gradient(135deg, #f5f6f8 0%, #e6e9f0 100%);
}

/* --------------------------------------------------------------------------
   INTERACTION LAYER (SLOW LIQUID MORPH ON HOVER)
   -------------------------------------------------------------------------- */

.vts-isolated-client-page .vts-glass-client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(148, 163, 184, 0.18),
                inset 0 1px 4px rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.95);
}

/* Hover par fluid mesh thoda failkar merge hoga */
.vts-isolated-client-page .vts-glass-client-card:hover .vts-glass-glow-layer {
    transform: scale(1.16) rotate(5deg);
    opacity: 0.95;
}

/* Location labels cleanup */
.vts-isolated-client-page .vts-loc-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
}

.vts-isolated-client-page .tag-new {
    background: #fff9db;
    color: #856404;
    border-color: #ffeeba;
}