/* ============================================================
   VOICE ORION — light professional theme
   Palette from logo: green #16A34A→#22C55E, cyan #0EA5E9,
   navy #0B2545 brand ink, on white/soft-grey.
   ============================================================ */
:root {
    --green: #16a34a;
    --green-bright: #22c55e;
    --cyan: #0ea5e9;
    --cyan-deep: #0284c7;
    --navy: #0b2545; /* brand ink / headings */
    --navy-2: #0f2e57;
    --navy-3: #13396b;
    --ink: #1e293b; /* body text */
    --muted: #64748b; /* secondary text */
    --line: #e2e8f0;
    --grey: #f5f8fc; /* alt section bg */
    --grey-2: #eef3f9;
    --white: #ffffff;
    --grad: linear-gradient(
        100deg,
        var(--green) 0%,
        #12b26b 45%,
        var(--cyan) 100%
    );
    --grad-navy: linear-gradient(135deg, #0b2545 0%, #0f2e57 55%, #123a6b 100%);
    --shadow-sm: 0 4px 14px rgba(15, 41, 87, 0.06);
    --shadow: 0 14px 40px -18px rgba(15, 41, 87, 0.22);
    --shadow-lg: 0 30px 60px -30px rgba(15, 41, 87, 0.35);
    --radius: 16px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
::selection {
    background: rgba(14, 165, 233, 0.18);
}

/* ---------------- BUTTONS ---------------- */
.vo-btn-primary {
    background: var(--grad);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 11px;
    padding: 0.72rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 10px 24px -10px rgba(14, 165, 233, 0.55);
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        filter 0.25s;
}
.vo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -12px rgba(22, 163, 74, 0.5);
    filter: brightness(1.04);
    color: #fff;
}
.vo-btn-primary i {
    transition: transform 0.25s;
}
.vo-btn-primary:hover i {
    transform: translateX(3px);
}
.vo-btn-outline {
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 0.7rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.25s;
}
.vo-btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.vo-btn-white {
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    border: none;
    border-radius: 11px;
    padding: 0.72rem 1.5rem;
    transition: all 0.25s;
}
.vo-btn-white:hover {
    transform: translateY(-2px);
    color: var(--navy);
    box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.3);
}
.vo-btn-ghost-light {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 11px;
    padding: 0.7rem 1.4rem;
    transition: all 0.25s;
}
.vo-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ---------------- TOP BAR ---------------- */
.vo-topbar {
    background: var(--navy);
    color: #cbd8ea;
    font-size: 0.82rem;
}
.vo-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    gap: 1rem;
}
.vo-topbar-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #aebfd6;
}
.vo-topbar-tag i {
    color: var(--green-bright);
}
.vo-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.vo-topbar-right a {
    color: #cbd8ea;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.vo-topbar-right a:hover {
    color: #fff;
}
.vo-topbar-right i {
    color: var(--cyan);
}
.vo-topbar-wa {
    color: #4ade80 !important;
}
.vo-topbar-wa i {
    color: #4ade80 !important;
}
@media (max-width: 767.98px) {
    .vo-topbar-tag {
        display: none;
    }
    .vo-topbar-inner {
        justify-content: center;
    }
    .vo-topbar-right {
        gap: 1rem;
    }
}

/* ---------------- NAVBAR ---------------- */
.vo-nav {
    background: #fff;
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition:
        box-shadow 0.3s,
        padding 0.3s;
    border-bottom: 1px solid var(--line);
}
.vo-nav.scrolled {
    box-shadow: 0 8px 30px -14px rgba(15, 41, 87, 0.28);
    padding: 0.5rem 0;
}
.vo-logo {
    height: 100px;
    width: auto;
    transition: height 0.3s;
}
.vo-nav.scrolled .vo-logo {
    height: 65px;
}
.vo-nav .navbar-nav {
    gap: 0.15rem;
}
.vo-nav .nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.55rem 1rem !important;
    position: relative;
    transition: all 0.22s;
    border-radius: 10px;
}
.vo-nav .nav-link:hover {
    color: var(--cyan-deep) !important;
    background: rgba(14, 165, 233, 0.07);
}
.vo-nav .nav-link.active {
    color: var(--cyan-deep) !important;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.1),
        rgba(14, 165, 233, 0.1)
    );
}
.vo-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.15rem;
    width: 18px;
    height: 2.5px;
    background: var(--grad);
    border-radius: 3px;
}
.vo-nav .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.12em;
    border-top-color: currentColor;
    transition: transform 0.25s;
}
.vo-nav .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown */
.vo-dropdown {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.6rem;
    box-shadow: 0 24px 50px -20px rgba(15, 41, 87, 0.4);
    margin-top: 0.8rem;
    min-width: 320px;
    background: #fff;
}
.vo-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 2rem;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
}
.vo-dropdown .dropdown-item {
    color: var(--navy);
    border-radius: 11px;
    padding: 0.7rem 0.8rem;
    font-size: 0.93rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.2s;
}
.vo-dropdown .dropdown-item .vo-dd-ic {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 8px 16px -8px rgba(14, 165, 233, 0.6);
    transition: transform 0.2s;
}
.vo-dropdown .dropdown-item small {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
    margin-top: 1px;
}
.vo-dropdown .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.08),
        rgba(14, 165, 233, 0.08)
    );
}
.vo-dropdown .dropdown-item:hover .vo-dd-ic {
    transform: scale(1.08) rotate(-4deg);
}
/* open dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .vo-nav .nav-item.dropdown {
        position: relative;
    }
    .vo-nav .nav-item.dropdown:hover .vo-dropdown {
        display: block;
        animation: voDropIn 0.22s ease;
    }
    .vo-nav .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px;
    }
    .vo-nav .nav-item.dropdown:hover > .nav-link {
        color: var(--cyan-deep) !important;
        background: rgba(14, 165, 233, 0.07);
    }
}
@keyframes voDropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.vo-nav-cta {
    padding: 0.62rem 1.35rem !important;
    box-shadow: 0 12px 26px -12px rgba(14, 165, 233, 0.7);
}
.navbar-toggler {
    border: none;
    padding: 0.35rem;
    box-shadow: none !important;
}
.vo-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Offcanvas menu: on desktop it behaves like a normal inline bar */
@media (min-width: 992px) {
    .vo-offcanvas {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        flex-grow: 1;
        display: flex !important;
        align-items: center;
    }
    .vo-offcanvas-header {
        display: none !important;
    }
    .vo-offcanvas-body {
        display: flex !important;
        align-items: center;
        flex-grow: 1;
        padding: 0;
    }
    .vo-offcanvas .navbar-nav {
        flex-direction: row;
    }
}
@media (max-width: 991.98px) {
    .vo-offcanvas {
        width: 320px !important;
        max-width: 85vw;
        background: #fff;
        box-shadow: -12px 0 40px -12px rgba(15, 41, 87, 0.3);
        z-index: 1046 !important;
    }
    .vo-offcanvas-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.1rem 1.3rem;
        border-bottom: 1px solid var(--line);
    }
    .vo-offcanvas-header .vo-logo {
        height: 40px;
    }
    .vo-offcanvas-close {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        border: 1px solid var(--line);
        background: var(--grey);
        color: var(--navy);
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }
    .vo-offcanvas-close:hover {
        background: var(--grad);
        color: #fff;
        border-color: transparent;
        transform: rotate(90deg);
    }
    .vo-offcanvas-body {
        padding: 1.2rem 1.3rem;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    .vo-offcanvas-body .navbar-nav {
        margin: 0 0 1.3rem !important;
        width: 100%;
    }
    .vo-offcanvas-body .nav-link {
        padding: 0.85rem 0.9rem !important;
        border-radius: 11px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(15, 41, 87, 0.05);
    }
    .vo-offcanvas-body .nav-link.active {
        background: linear-gradient(
            135deg,
            rgba(34, 197, 94, 0.1),
            rgba(14, 165, 233, 0.1)
        );
    }
    .vo-offcanvas-body .nav-link.active::after {
        display: none;
    }
    .vo-offcanvas-body .vo-dropdown {
        position: static !important;
        display: block !important;
        box-shadow: none;
        border: none;
        padding: 0.3rem 0 0.3rem 1rem;
        margin-top: 0.3rem;
        min-width: 0;
        background: transparent;
        animation: none;
    }
    .vo-offcanvas-body .vo-dropdown::before {
        display: none;
    }
    .vo-offcanvas-body .dropdown-toggle::after {
        float: right;
        margin-top: 0.6em;
    }
    .vo-offcanvas-body .vo-dd-ic {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .vo-offcanvas-body .vo-nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .vo-offcanvas-body .dropdown-item small {
        font-size: 0.72rem;
    }
}
/* Backdrop */
.offcanvas-backdrop {
    background: rgba(11, 37, 69, 0.55);
}

/* ---------------- HERO (photo background) ---------------- */
.vo-hero {
    position: relative;
    background: var(--navy);
}
.carousel-item {
    position: relative;
}
.vo-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.vo-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(7, 17, 35, 0.94) 0%,
        rgba(8, 20, 42, 0.86) 42%,
        rgba(9, 24, 48, 0.55) 100%
    );
}
.vo-hero .carousel {
    position: relative;
    z-index: 2;
}
.vo-hero .container {
    position: relative;
    z-index: 3;
}
.carousel-item .container {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 170px;
}
.vo-hero-copy {
    max-width: 640px;
}
.vo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8fe3b0;
    margin-bottom: 1.4rem;
}
.vo-eyebrow-dot {
    width: 26px;
    height: 2px;
    background: var(--green-bright);
    display: inline-block;
    position: relative;
}
.vo-eyebrow-dot::after {
    content: "";
    position: absolute;
    right: -8px;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
}
.vo-hero-title {
    font-weight: 700;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.vo-accent-underline {
    position: relative;
    color: var(--green-bright);
    white-space: nowrap;
}
.vo-accent-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.02em;
    height: 0.14em;
    background: var(--green-bright);
    border-radius: 3px;
    opacity: 0.85;
}
.vo-accent {
    color: var(--green-bright);
}
.vo-hero-sub {
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    color: #cdd9ec;
    font-weight: 300;
    max-width: 36rem;
    margin-bottom: 2rem;
}
.vo-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.vo-btn-hero-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 11px;
    padding: 0.7rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}
.vo-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.vo-hero-call {
    margin-top: 1.6rem;
    color: #9fb3d1;
    font-size: 0.95rem;
}
.vo-hero-call a {
    color: var(--green-bright);
    font-weight: 600;
    margin-left: 0.3rem;
}
.vo-hero-call a i {
    font-size: 0.85rem;
}

/* carousel controls */
.vo-indicators {
    margin-bottom: 0;
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 150px;
    z-index: 4;
}
.vo-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    transition: all 0.3s;
    opacity: 1;
}
.vo-indicators .active {
    background: var(--green-bright);
    width: 46px;
}
.vo-ctrl {
    width: auto;
    opacity: 1;
    z-index: 4;
}
.vo-ctrl i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: all 0.25s;
}
.vo-ctrl:hover i {
    background: var(--green-bright);
    color: var(--navy);
    border-color: transparent;
}
.carousel-control-prev {
    left: 0;
    width: 5%;
}
.carousel-control-next {
    right: 0;
    width: 5%;
}
@media (max-width: 991.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .vo-indicators {
        bottom: 120px;
    }
}

/* ---------------- STAT BAR (overlaps hero) ---------------- */
.vo-hero > .container:last-child {
    position: relative;
    z-index: 5;
}
.vo-statbar {
    position: relative;
    z-index: 6;
    margin-top: -90px;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}
.vo-statbar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 1.3rem;
    border-right: 1px solid var(--line);
}
.vo-statbar-item:last-child {
    border-right: none;
}
.vo-sb-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.14),
        rgba(14, 165, 233, 0.14)
    );
    color: var(--cyan-deep);
}
.vo-statbar-item strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}
.vo-statbar-item small {
    color: var(--muted);
    font-size: 0.8rem;
}
@media (max-width: 991.98px) {
    .vo-statbar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -70px;
    }
    .vo-statbar-item {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    .vo-statbar-item:nth-child(2n) {
        border-right: none;
    }
    .vo-statbar-item:last-child {
        grid-column: 1 / -1;
        justify-content: center;
        border-bottom: none;
    }
}
@media (max-width: 575.98px) {
    .vo-statbar {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
    .vo-statbar-item {
        border-right: none;
    }
    .vo-statbar-item:nth-child(2n) {
        border-right: none;
    }
}

/* ---------------- SECTIONS ---------------- */
.vo-section {
    padding: 70px 0;
}
#about.vo-section {
    padding-top: 130px;
}
.vo-section-grey {
    background: var(--grey);
}
.vo-head {
    max-width: 720px;
    margin: 0 auto 3.2rem;
}
.vo-head:not(.text-center) {
    margin-left: 0;
    max-width: 640px;
}
.vo-kicker-line {
    width: 26px;
    height: 2px;
    background: var(--green);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.vo-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.85rem;
}
.vo-kicker-light {
    color: #5eead4;
}
.vo-h2 {
    font-weight: 700;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.vo-h2-light {
    color: #fff;
}
.vo-lead {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 1.2rem;
}
.vo-lead-c {
    margin-left: auto;
    margin-right: auto;
}
.vo-lead-light {
    color: #c7d6ec;
}
.vo-accent-light {
    background: linear-gradient(100deg, #4ade80, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vo-body {
    color: var(--muted);
    margin-bottom: 1.4rem;
}

/* about */
.vo-about-media {
    position: relative;
}
.vo-about-panel {
    position: relative;
    height: 400px;
    border-radius: 22px;
    background: var(--grad-navy);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vo-about-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.14) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
}
.vo-about-orbit-core {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.6);
    z-index: 2;
    animation: voPulse 3s ease-in-out infinite;
}
@keyframes voPulse {
    50% {
        box-shadow: 0 0 80px rgba(34, 197, 94, 0.7);
    }
}
.vo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.25);
}
.vo-ring-1 {
    width: 210px;
    height: 210px;
    animation: voSpin 20s linear infinite;
}
.vo-ring-2 {
    width: 320px;
    height: 320px;
    animation: voSpin 32s linear infinite reverse;
}
@keyframes voSpin {
    to {
        transform: rotate(360deg);
    }
}
.vo-node {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}
.vo-node-1 {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    animation: voBob 5s ease-in-out infinite;
}
.vo-node-2 {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    animation: voBob 6s ease-in-out infinite 0.4s;
}
.vo-node-3 {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    animation: voBob 5.4s ease-in-out infinite 0.7s;
}
.vo-node-4 {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    animation: voBob 6.2s ease-in-out infinite 0.2s;
}
.vo-about-badge {
    position: absolute;
    right: -8px;
    bottom: -18px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow);
}
.vo-about-badge i {
    font-size: 1.6rem;
    color: var(--green);
}
.vo-about-badge strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}
.vo-about-badge small {
    color: var(--muted);
    font-size: 0.8rem;
}
.vo-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.4rem;
    margin: 1.4rem 0 1.8rem;
}
.vo-check-grid span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-size: 0.96rem;
}
.vo-check-grid i {
    color: var(--green);
    font-size: 1.05rem;
}

/* ---------------- SERVICES SLIDER ---------------- */
.vo-svc-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.vo-svc-viewport {
    overflow: hidden;
    width: 100%;
    padding: 8px 4px 20px;
}
.vo-svc-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.vo-svc-slide {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
    min-width: 0;
}
.vo-svc {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.vo-svc:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.vo-svc-media {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.vo-svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vo-svc:hover .vo-svc-media img {
    transform: scale(1.07);
}
.vo-svc-badge {
    position: absolute;
    left: 1.2rem;
    bottom: -24px;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 12px 24px -8px rgba(14, 165, 233, 0.6);
    border: 3px solid #fff;
}
.vo-svc-body {
    padding: 2.1rem 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vo-svc-body h3 {
    font-size: 1.16rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.vo-svc-body p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 1rem;
}
.vo-svc-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.vo-svc-body ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-size: 0.89rem;
    padding: 0.28rem 0;
}
.vo-svc-body ul i {
    color: var(--green);
    font-weight: 700;
}
.vo-svc-body .vo-svc-link {
    margin-top: auto;
}
.vo-svc-link {
    color: var(--cyan-deep);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s;
}
.vo-svc-link:hover {
    gap: 0.65rem;
    color: var(--green);
}
.vo-svc-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    z-index: 2;
}
.vo-svc-arrow:hover {
    background: var(--grad);
    color: #fff;
    transform: scale(1.08);
}
.vo-svc-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    background: #fff;
    color: var(--navy);
}
.vo-svc-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.vo-svc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.vo-svc-dot.active {
    background: var(--grad);
    width: 26px;
    border-radius: 5px;
}
@media (max-width: 991.98px) {
    .vo-svc-slide {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
    .vo-svc-arrow {
        width: 42px;
        height: 42px;
    }
}
@media (max-width: 575.98px) {
    .vo-svc-slide {
        flex-basis: 100%;
    }
    .vo-svc-arrow {
        display: none;
    }
}

/* ---------------- WHY ---------------- */
.vo-why-head {
    position: sticky;
    top: 110px;
}
.vo-why-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.vo-why-item {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s;
}
.vo-why-item:hover {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}
.vo-why-no {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 2.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vo-why-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.vo-why-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}
@media (max-width: 991.98px) {
    .vo-why-head {
        position: static;
    }
}

/* ---------------- NETWORK (dark band) ---------------- */
.vo-network {
    background: var(--grad-navy);
    position: relative;
    overflow: hidden;
}
.vo-network::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 32px 32px;
}
.vo-network::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.3),
        transparent 65%
    );
}
.vo-network .container {
    position: relative;
    z-index: 2;
}
.vo-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    backdrop-filter: blur(6px);
    transition: transform 0.3s;
}
.vo-stat:hover {
    transform: translateY(-6px);
}
.vo-stat-num {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(100deg, #4ade80, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}
.vo-stat-label {
    color: #c7d6ec;
    font-size: 0.9rem;
}

/* ---------------- PROCESS ---------------- */
.vo-steps {
    position: relative;
}
.vo-step {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.vo-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.vo-step-phase {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    margin-bottom: 1rem;
}
.vo-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 10px 22px -10px rgba(14, 165, 233, 0.5);
}
.vo-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.vo-step p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

/* ---------------- INDUSTRIES ---------------- */
.vo-ind {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.7rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.vo-ind:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.vo-ind i {
    font-size: 1.8rem;
    color: var(--cyan-deep);
}
.vo-ind:hover i {
    color: var(--green);
}
.vo-ind span {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.94rem;
}

/* ---------------- MARQUEE ---------------- */
.vo-marquee-sec {
    padding: 56px 0 64px;
    background: #fff;
    overflow: hidden;
}
.vo-marquee-label {
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.vo-marquee {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.vo-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: voMarquee 30s linear infinite;
}
.vo-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity 0.3s;
}
.vo-marquee-track span:hover {
    opacity: 1;
}
.vo-marquee-track i {
    color: var(--cyan);
}
.vo-marquee:hover .vo-marquee-track {
    animation-play-state: paused;
}
@keyframes voMarquee {
    to {
        transform: translateX(-50%);
    }
}

/* ---------------- PRICING ---------------- */
.vo-price {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2.3rem 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.vo-price:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.vo-price-feat {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--grad) border-box;
    box-shadow: var(--shadow-lg);
}
.vo-price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}
.vo-price-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.vo-price-desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}
.vo-price-amt {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.4rem;
    line-height: 1;
}
.vo-price-cur {
    font-size: 1.3rem;
    vertical-align: super;
    color: var(--muted);
}
.vo-price-per {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}
.vo-price-custom {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vo-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7rem;
}
.vo-price-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    color: var(--ink);
    font-size: 0.94rem;
    border-bottom: 1px solid var(--line);
}
.vo-price-list i {
    color: var(--green);
}

/* ---------------- TESTIMONIALS ---------------- */
.vo-quote {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.vo-quote:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.vo-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
    font-size: 0.95rem;
}
.vo-quote p {
    color: var(--ink);
    font-size: 1.02rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.vo-quote-by {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.vo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.vo-quote-by strong {
    display: block;
    color: var(--navy);
    font-size: 0.98rem;
}
.vo-quote-by small {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ---------------- CTA ---------------- */
.vo-cta-wrap {
    padding: 70px 0 70px;
}
.vo-cta {
    background: var(--grad-navy);
    border-radius: 24px;
    padding: 3.4rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}
.vo-cta::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -6%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.35),
        transparent 65%
    );
}
.vo-cta::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -4%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.28),
        transparent 65%
    );
}
.vo-cta-text {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 260px;
}
.vo-cta h2 {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: #fff;
    margin-bottom: 0.6rem;
}
.vo-cta p {
    color: #c7d6ec;
    font-size: 1.05rem;
    font-weight: 300;
    margin: 0;
}
.vo-cta-btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------------- BLOG ---------------- */
.vo-post {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.vo-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.vo-post-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.vo-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vo-post:hover .vo-post-img img {
    transform: scale(1.06);
}
.vo-post-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--cyan-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.vo-post-body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vo-post-meta {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}
.vo-post-meta i {
    color: var(--cyan-deep);
}
.vo-post-dot {
    opacity: 0.5;
}
.vo-post h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.6rem;
    line-height: 1.35;
}
.vo-post p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 1.3rem;
    flex: 1;
}
.vo-post-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.vo-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.vo-post-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------- CONTACT ---------------- */
.vo-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 1.5rem;
}
.vo-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.55rem 0;
}
.vo-ci {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.12),
        rgba(14, 165, 233, 0.12)
    );
    color: var(--cyan-deep);
}
.vo-contact-list strong {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
}
.vo-contact-list div {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.4;
}
.vo-contact-list strong {
    margin-bottom: 1px;
}
.vo-contact-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.vo-caction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 11px;
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--navy);
    font-weight: 600;
    transition: all 0.25s;
}
.vo-caction:hover {
    border-color: var(--cyan);
    color: var(--cyan-deep);
    transform: translateY(-2px);
}
.vo-caction-wa:hover {
    border-color: #25d366;
    color: #128c4a;
}
.vo-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
}
.vo-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.4rem;
}
.vo-label {
    display: block;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.vo-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 0.78rem 1rem;
    color: var(--ink);
    font-family: inherit;
    font-size: 0.96rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.vo-input::placeholder {
    color: #94a3b8;
}
.vo-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}
select.vo-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230EA5E9' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
.vo-form-msg {
    color: var(--green);
    font-size: 0.92rem;
    font-weight: 500;
}
.vo-form-note {
    margin: 1.2rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.vo-form-note i {
    color: var(--green);
}

/* ---------------- FOOTER ---------------- */
.vo-footer {
    background: var(--navy);
    color: #a9bcd6;
    padding: 80px 0 26px;
    position: relative;
    overflow: hidden;
}
.vo-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}
.vo-foot-watermark {
    position: absolute;
    right: 2%;
    bottom: -2.5rem;
    font-size: 14rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.vo-foot-main,
.vo-foot-bottom {
    position: relative;
    z-index: 1;
}
.vo-foot-logo {
    display: inline-flex;
    background: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    margin-bottom: 1.3rem;
}
.vo-foot-logo img {
    height: 130px;
}
.vo-foot-about {
    color: #9fb3d1;
    font-size: 0.92rem;
    max-width: 23rem;
    line-height: 1.7;
}
.vo-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.3rem;
}
.vo-social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd8ea;
    transition: all 0.25s;
}
.vo-social a:hover {
    background: var(--grad);
    color: #fff;
    transform: translateY(-3px);
}
.vo-foot-main {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vo-foot-h {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.vo-foot-marker {
    width: 18px;
    height: 2px;
    background: var(--green-bright);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.vo-foot-marker::after {
    content: "";
    position: absolute;
    right: -7px;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
}
.vo-foot-links,
.vo-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vo-foot-links li {
    margin-bottom: 0.75rem;
}
.vo-foot-links a {
    color: #9fb3d1;
    font-size: 0.92rem;
    transition:
        color 0.2s,
        padding 0.2s;
}
.vo-foot-links a:hover {
    color: #4ade80;
    padding-left: 4px;
}
.vo-foot-contact li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
    color: #c2d0e4;
    line-height: 1.45;
}
.vo-fc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: var(--green-bright);
    font-size: 1rem;
}
.vo-foot-contact a {
    color: #c2d0e4;
    transition: color 0.2s;
}
.vo-foot-contact a:hover {
    color: #fff;
}
.vo-foot-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.vo-fa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s;
}
.vo-fa-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
}
.vo-fa-btn i {
    color: var(--green-bright);
}
.vo-fa-wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.35);
}
.vo-fa-wa i {
    color: #4ade80;
}
.vo-fa-wa:hover {
    background: rgba(37, 211, 102, 0.28);
}
.vo-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
    font-size: 0.87rem;
    color: #7e93b3;
}
.vo-foot-dev {
    color: #7e93b3;
}
.vo-foot-dev a {
    color: #9fb3d1;
    font-weight: 600;
    transition: color 0.2s;
}
.vo-foot-dev a:hover {
    color: #4ade80;
}
.vo-foot-legal a {
    color: #9fb3d1;
    transition: color 0.2s;
}
.vo-foot-legal a:hover {
    color: #4ade80;
}

/* ---------------- FLOATING ---------------- */
.vo-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 12px 26px -10px rgba(14, 165, 233, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s;
}
.vo-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vo-top:hover {
    transform: translateY(-3px);
    color: #fff;
}
.vo-wa-float {
    position: fixed;
    bottom: 84px;
    right: 26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s;
    animation: voWa 2.4s infinite;
}
.vo-wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes voWa {
    50% {
        box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.9);
    }
}
.vo-mobilebar {
    display: none;
}

/* ---------------- REVEAL ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 1rem 1.2rem;
        margin-top: 0.9rem;
        box-shadow: var(--shadow);
    }
    .vo-nav .nav-link {
        padding: 0.7rem 0.4rem !important;
    }
    .vo-nav .nav-link::after {
        display: none;
    }
    .vo-nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.8rem;
    }
    .navbar-nav {
        margin-bottom: 0.4rem;
    }
    .carousel-item .container {
        padding-top: 64px;
        padding-bottom: 80px;
    }
    .vo-hero-art {
        height: 300px;
        margin-top: 0.5rem;
    }
    .vo-section {
        padding: 70px 0;
    }
    .vo-about-panel {
        height: 340px;
    }
    .vo-trust {
        margin-top: -36px;
    }
}
@media (max-width: 767.98px) {
    .vo-mobilebar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 0.5rem;
        gap: 0.5rem;
        box-shadow: 0 -6px 20px -10px rgba(15, 41, 87, 0.25);
    }
    .vo-mobilebar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        padding: 0.5rem;
        border-radius: 11px;
        color: var(--navy);
        font-size: 0.72rem;
        font-weight: 600;
        transition: all 0.2s;
    }
    .vo-mobilebar a i {
        font-size: 1.1rem;
    }
    .vo-mobilebar-cta {
        background: var(--grad);
        color: #fff !important;
    }
    .vo-wa-float {
        bottom: 78px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
    .vo-top {
        bottom: 78px;
        right: 16px;
    }
    body {
        padding-bottom: 62px;
    }
    .vo-cta {
        padding: 2.4rem 1.6rem;
        text-align: center;
        justify-content: center;
    }
    .vo-cta-btns {
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .vo-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .vo-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .vo-check-grid {
        grid-template-columns: 1fr;
    }
    .vo-cta-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .vo-foot-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* Page hero / banner */
.vo-page-hero {
    position: relative;
    background: var(--grad-navy);
    overflow: hidden;
    padding: 90px 0 80px;
}
.vo-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            620px 360px at 88% 10%,
            rgba(14, 165, 233, 0.28),
            transparent 60%
        ),
        radial-gradient(
            520px 340px at 4% 100%,
            rgba(34, 197, 94, 0.2),
            transparent 60%
        );
}
.vo-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.12) 1px,
        transparent 1px
    );
    background-size: 32px 32px;
    -webkit-mask: linear-gradient(90deg, transparent, #000 45%);
    mask: linear-gradient(90deg, transparent, #000 45%);
}
.vo-page-hero .container {
    position: relative;
    z-index: 2;
}
.vo-page-hero .vo-eyebrow {
    color: #8fe3b0;
}
.vo-page-title {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.vo-page-title .vo-accent {
    color: var(--green-bright);
}
.vo-page-lead {
    font-size: 1.12rem;
    color: #c7d6ec;
    font-weight: 300;
    max-width: 44rem;
    margin: 0;
}
.vo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.3rem;
    font-size: 0.9rem;
    color: #9fb3d1;
}
.vo-breadcrumb a {
    color: #c7d6ec;
    transition: color 0.2s;
}
.vo-breadcrumb a:hover {
    color: var(--green-bright);
}
.vo-breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.6;
}
.vo-breadcrumb .current {
    color: #fff;
}

/* Prose / legal pages */
.vo-prose {
    max-width: 820px;
}
.vo-prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.4rem 0 1rem;
}
.vo-prose h2:first-child {
    margin-top: 0;
}
.vo-prose h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.6rem 0 0.6rem;
}
.vo-prose p {
    color: var(--ink);
    margin-bottom: 1.1rem;
    line-height: 1.8;
}
.vo-prose ul {
    margin: 0 0 1.3rem;
    padding-left: 0;
    list-style: none;
}
.vo-prose ul li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.6rem;
    color: var(--ink);
    line-height: 1.7;
}
.vo-prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
}
.vo-prose a {
    color: var(--cyan-deep);
    font-weight: 500;
}
.vo-prose a:hover {
    text-decoration: underline;
}
.vo-legal-updated {
    display: inline-block;
    font-size: 0.88rem;
    color: var(--muted);
    background: var(--grey);
    border: 1px solid var(--line);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.vo-legal-toc {
    background: var(--grey);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    margin-bottom: 2.5rem;
}
.vo-legal-toc h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}
.vo-legal-toc ol {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink);
}
.vo-legal-toc li {
    margin-bottom: 0.5rem;
}
.vo-legal-toc a {
    color: var(--ink);
    transition: color 0.2s;
}
.vo-legal-toc a:hover {
    color: var(--cyan-deep);
}

/* FAQ accordion */
.vo-faq {
    max-width: 1000px;
    margin: 0 auto;
}
.vo-faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        border-color 0.25s;
}
.vo-faq-item.open {
    box-shadow: var(--shadow);
    border-color: rgba(14, 165, 233, 0.4);
}
.vo-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}
.vo-faq-q:hover {
    color: var(--cyan-deep);
}
.vo-faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad);
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s;
}
.vo-faq-item.open .vo-faq-icon {
    transform: rotate(45deg);
}
.vo-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.vo-faq-a-inner {
    padding: 0 1.5rem 1.4rem;
    color: var(--muted);
    line-height: 1.75;
}
.vo-faq-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.vo-faq-cat {
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.vo-faq-cat:hover {
    border-color: var(--cyan);
}
.vo-faq-cat.active {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

/* Service detail */
.vo-sd-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}
.vo-sd-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.vo-sd-media img {
    width: 100%;
    display: block;
}
.vo-sd-side {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.9rem;
    box-shadow: var(--shadow-sm);
}
.vo-sd-side h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.1rem;
}
.vo-sd-side .vo-sd-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}
.vo-sd-side .vo-sd-spec span:first-child {
    color: var(--muted);
}
.vo-sd-side .vo-sd-spec span:last-child {
    color: var(--navy);
    font-weight: 600;
}
.vo-feature-row {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
}
.vo-feature-row:last-child {
    border-bottom: none;
}
.vo-feature-row i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: var(--grad);
}
.vo-feature-row h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.vo-feature-row p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0;
}
@media (max-width: 991.98px) {
    .vo-sd-grid {
        grid-template-columns: 1fr;
    }
    .vo-sd-side {
        position: static;
    }
}

/* Blog detail */
.vo-article {
    max-width: 800px;
    margin: 0 auto;
}
.vo-article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
}
.vo-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.92rem;
}
.vo-article-meta .vo-post-cat {
    position: static;
}
.vo-article .vo-post-author {
    color: var(--navy);
}
.vo-article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.4rem 0 1rem;
}
.vo-article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.8rem 0 0.7rem;
}
.vo-article-body p {
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.vo-article-body ul {
    margin: 0 0 1.3rem;
    padding-left: 0;
    list-style: none;
}
.vo-article-body ul li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}
.vo-article-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
}
.vo-article-quote {
    border-left: 4px solid;
    border-image: var(--grad) 1;
    background: var(--grey);
    padding: 1.4rem 1.6rem;
    border-radius: 0 12px 12px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
    margin: 2rem 0;
}
.vo-article-share {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.vo-article-share span {
    font-weight: 600;
    color: var(--navy);
    margin-right: 0.3rem;
}
.vo-article-share a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    color: var(--navy);
    transition: all 0.25s;
}
.vo-article-share a:hover {
    background: var(--grad);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact */
.vo-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.vo-contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.vo-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.vo-contact-card-ic {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 10px 22px -10px rgba(14, 165, 233, 0.5);
}
.vo-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.vo-contact-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin: 0 0 0.3rem;
}
.vo-contact-card a {
    color: var(--cyan-deep);
    font-weight: 600;
}
.vo-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 340px;
    background: var(--grad-navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vo-map-inner {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}
.vo-map-inner i {
    font-size: 3rem;
    color: var(--green-bright);
    margin-bottom: 0.6rem;
}
.vo-map::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.15) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
@media (max-width: 767.98px) {
    .vo-contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Team / values grid (about) */
.vo-value {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.9rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.vo-value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.vo-value-ic {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: var(--grad);
    margin-bottom: 1.2rem;
}
.vo-value h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.vo-value p {
    color: var(--muted);
    font-size: 0.94rem;
    margin: 0;
}
.vo-milestone {
    display: flex;
    gap: 1.4rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}
.vo-milestone:last-child {
    border-bottom: none;
}
.vo-milestone-year {
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 700;
    width: 5rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vo-milestone h4 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.vo-milestone p {
    color: var(--muted);
    font-size: 0.93rem;
    margin: 0;
}

/* Services page list rows */
.vo-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}
.vo-service-row:last-child {
    margin-bottom: 0;
}
.vo-service-row.rev .vo-service-media {
    order: 2;
}
.vo-service-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.vo-service-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.vo-service-media .vo-svc-badge {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    bottom: auto;
    top: 1.4rem;
}
.vo-service-content .vo-kicker {
    margin-bottom: 0.6rem;
}
.vo-service-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.9rem;
}
.vo-service-content p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}
.vo-service-content .vo-check-grid {
    margin: 1.2rem 0 1.6rem;
}
@media (max-width: 767.98px) {
    .vo-service-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .vo-service-row.rev .vo-service-media {
        order: 0;
    }
}

/* Legal pages: full-width shadow box */
.vo-legal-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 3rem 3.2rem;
}
.vo-legal-box .vo-prose {
    max-width: none;
}
.vo-legal-box .vo-legal-toc {
    background: var(--grey);
}
@media (max-width: 767.98px) {
    .vo-legal-box {
        padding: 2rem 1.4rem;
    }
}

/* Contact page — details left, form right */
.vo-contact-info {
    position: sticky;
    top: 110px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 24px -10px rgba(14,165,233,.55);
  transition: transform .25s,box-shadow .25s,filter .25s;
}
.vo-contact-info-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 0.6rem 0 1rem;
}
.vo-contact-info-lead {
    color: var(--muted);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}
.vo-contact-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}
.vo-contact-detail-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}
.vo-contact-detail-list li:last-child {
    border-bottom: none;
}
.vo-cd-ic {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 10px 20px -10px rgba(14, 165, 233, 0.5);
}
.vo-contact-detail-list strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.vo-contact-detail-list span,
.vo-contact-detail-list a {
    color: var(--navy);
    font-weight: 500;
    font-size: 1rem;
}
.vo-contact-detail-list a:hover {
    color: var(--cyan-deep);
}
.vo-contact-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}
.vo-btn-wa {
    background: #25d366;
    color: #fff;
    font-weight: 600;
    border-radius: 11px;
    padding: 0.7rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
}
.vo-btn-wa:hover {
    background: #1eb658;
    color: #fff;
    transform: translateY(-2px);
}
.vo-contact-social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.vo-contact-social span {
    font-weight: 600;
    color: var(--navy);
    margin-right: 0.3rem;
    font-size: 0.92rem;
}
.vo-contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    color: var(--navy);
    transition: all 0.25s;
}
.vo-contact-social a:hover {
    background: var(--grad);
    color: #fff;
    transform: translateY(-3px);
}
.vo-form-boxed {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
}
.vo-form-sub {
    color: var(--muted);
    margin: -0.5rem 0 1.5rem;
    font-size: 0.96rem;
}
@media (max-width: 991.98px) {
    .vo-contact-info {
        position: static;
    }
    .vo-form-boxed {
        padding: 1.8rem;
    }
}

/* Service details — content box + rich sidebar */
.vo-sd-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
}
.vo-sd-box .vo-sd-media {
    margin: 0;
}
.vo-sd-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 110px;
}
.vo-sd-menu,
.vo-sd-related {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}
.vo-sd-menu-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}
.vo-sd-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vo-sd-menu-list li {
    margin-bottom: 0.4rem;
}
.vo-sd-menu-list li:last-child {
    margin-bottom: 0;
}
.vo-sd-menu-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.8rem;
    border-radius: 12px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.vo-sd-menu-ic {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    background: var(--grad);
    transition: transform 0.2s;
}
.vo-sd-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--muted);
    transition: transform 0.2s;
}
.vo-sd-menu-list a:hover {
    background: var(--grey);
}
.vo-sd-menu-list a:hover .vo-sd-arrow {
    transform: translateX(3px);
    color: var(--cyan-deep);
}
.vo-sd-menu-list li.active a {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.1),
        rgba(14, 165, 233, 0.1)
    );
}
.vo-sd-menu-list li.active .vo-sd-menu-ic {
    box-shadow: 0 8px 16px -8px rgba(14, 165, 233, 0.6);
}
.vo-sd-rel {
    display: flex;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}
.vo-sd-rel:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.vo-sd-rel:first-of-type {
    padding-top: 0;
}
.vo-sd-rel-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
.vo-sd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.vo-sd-rel:hover .vo-sd-rel-img img {
    transform: scale(1.08);
}
.vo-sd-rel-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.vo-sd-rel-body strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.vo-sd-rel-body small {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0.35rem;
}
.vo-sd-rel-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--cyan-deep);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}
.vo-sd-rel:hover .vo-sd-rel-link {
    gap: 0.5rem;
    color: var(--green);
}
@media (max-width: 991.98px) {
    .vo-sd-box {
        padding: 1.8rem;
    }
    .vo-sd-aside {
        position: static;
    }
}

/* Blog layout — main + sidebar */
.vo-blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    align-items: start;
}
.vo-blog-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem;
}
article.vo-blog-box {
    padding: 2.5rem;
}
.vo-blog-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 110px;
}
.vo-widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 1.6rem;
}
.vo-widget-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
}
.vo-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}
.vo-search-box {
    display: flex;
    gap: 0.5rem;
}
.vo-search-box input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
}
.vo-search-box input:focus {
    border-color: var(--cyan);
}
.vo-search-box button {
    flex-shrink: 0;
    width: 42px;
    border: none;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}
.vo-search-box button:hover {
    transform: scale(1.05);
}
.vo-recent-list {
    display: flex;
    flex-direction: column;
}
.vo-recent {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}
.vo-recent:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.vo-recent:first-child {
    padding-top: 0;
}
.vo-recent-img {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 11px;
    overflow: hidden;
}
.vo-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.vo-recent:hover .vo-recent-img img {
    transform: scale(1.08);
}
.vo-recent-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.vo-recent-body strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.35rem;
    transition: color 0.2s;
}
.vo-recent:hover .vo-recent-body strong {
    color: var(--cyan-deep);
}
.vo-recent-body small {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.vo-widget-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vo-widget-cats li {
    border-bottom: 1px solid var(--line);
}
.vo-widget-cats li:last-child {
    border-bottom: none;
}
.vo-widget-cats a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.94rem;
    transition: all 0.2s;
}
.vo-widget-cats a i {
    font-size: 0.75rem;
    color: var(--cyan);
}
.vo-widget-cats a:hover {
    color: var(--cyan-deep);
    padding-left: 5px;
}
.vo-widget-cta {
    background: var(--grad-navy);
    border: none;
    color: #fff;
    text-align: center;
}
.vo-widget-cta h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.vo-widget-cta p {
    color: #c7d6ec;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}
@media (max-width: 991.98px) {
    .vo-blog-grid {
        grid-template-columns: 1fr;
    }
    .vo-blog-aside {
        position: static;
    }
}

/* success Message css */

.custom-success-alert {
    background: #eaf7ee;
    border: 1px solid #b7e4c7;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    padding: 15px 18px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.success-icon {
    color: #28a745;
    font-size: 22px;
    margin-top: 2px;
}

.success-text strong {
    display: block;
    font-size: 16px;
    color: #155724;
    margin-bottom: 3px;
}

.success-text p {
    margin: 0;
    font-size: 14px;
    color: #2d6a4f;
}

/* Close button (clean & minimal) */
.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}