
/* ==========================================================================
   Industries slider section (landing page)
   ========================================================================== */
.vv-ind-section {
    background: #101c44;
    color: #fff;
}

.vv-ind-head-wrap {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}

.vv-ind-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--vv-cyan);
    margin-bottom: 0.4rem;
}

.vv-ind-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.vv-ind-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.vv-ind-track {
    position: relative;
}

.vv-ind-slide {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.vv-ind-bg {
    position: absolute;
    inset: 0;
}

.vv-ind-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vv-ind-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 28, 68, 0.92) 0%, rgba(16, 28, 68, 0.78) 38%, rgba(16, 28, 68, 0.25) 70%, rgba(16, 28, 68, 0.1) 100%);
}

.vv-ind-overlay {
    display: none;
}

.vv-ind-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding-block: 4rem 5rem;
}

.vv-ind-content {
    max-width: 560px;
}

.vv-ind-slide-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #fff;
}

.vv-ind-slide-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.7rem;
}

.vv-ind-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.7rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    background: var(--vv-cyan);
    color: #1B2C6E;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.vv-ind-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* Navigasi */
.vv-ind-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
}

.vv-ind-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vv-ind-arrow--prev { left: 1rem; }
.vv-ind-arrow--next { right: 1rem; }

.vv-ind-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.vv-ind-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    flex-shrink: 0;
    line-height: 1;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vv-ind-dot.is-active {
    background: var(--vv-cyan);
    transform: scale(1.3);
}

@media (max-width: 991.98px) {
    .vv-ind-slide,
    .vv-ind-inner {
        min-height: auto;
    }

    .vv-ind-inner {
        padding-block: 3rem 4rem;
    }

    .vv-ind-content {
        text-align: center;
        margin-inline: auto;
    }

    .vv-ind-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .vv-ind-title {
        margin-bottom: 1.8rem;
    }
}

/* ==========================================================================
   Services section (landing page)
   ========================================================================== */
.vv-svc-section {
    padding: 3.5rem 0 4.5rem;
    background: #f5f7fb;
    position: relative;
}

.vv-svc-head {
    margin-bottom: 2.5rem;
}

.vv-svc-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--vv-cyan);
    margin-bottom: 0.4rem;
}

.vv-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 2px solid #253B94;
    color: #253B94;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vv-svc-link:hover {
    background: #253B94;
    color: #fff;
    transform: translateY(-2px);
}

.vv-svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.6rem;
}

.vv-svc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3eaf2;
    box-shadow: 0 4px 18px rgba(16, 42, 67, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vv-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(16, 42, 67, 0.16);
}

.vv-svc-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef2f8;
}

.vv-svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vv-svc-card:hover .vv-svc-card-img img {
    transform: scale(1.06);
}

.vv-svc-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #b8c5d6;
    font-size: 2.6rem;
    background: linear-gradient(135deg, #eef2f8 0%, #dfe7f3 100%);
}

.vv-svc-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vv-svc-card-body h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #16324f;
    margin-bottom: 0.5rem;
}

.vv-svc-card-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #51677d;
    margin-bottom: 1.1rem;
    flex: 1;
}

.vv-svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vv-cyan);
}

.vv-svc-card-link i {
    transition: transform 0.25s ease;
}

.vv-svc-card:hover .vv-svc-card-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   Services accordion (landing page)
   ========================================================================== */
.vv-svc-accordion {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.vv-svc-accordion-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    background: linear-gradient(135deg, #eef2f8 0%, #dfe7f3 100%);
}

.vv-svc-media-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vv-svc-media-item.is-active {
    opacity: 1;
    transform: scale(1);
}

.vv-svc-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vv-svc-media-item .vv-svc-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #b8c5d6;
    font-size: 3rem;
}

.vv-svc-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vv-svc-acc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.3rem;
    border: 1px solid #e3eaf2;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vv-svc-acc-item:hover {
    border-color: var(--vv-cyan);
}

.vv-svc-acc-item.is-active {
    background: #16324f;
    border-color: #16324f;
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.18);
}

.vv-svc-acc-index {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--vv-cyan);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.vv-svc-acc-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 800;
    color: #16324f;
    transition: color 0.2s ease;
}

.vv-svc-acc-item.is-active .vv-svc-acc-title {
    color: #fff;
}

.vv-svc-acc-chevron {
    color: #b8c5d6;
    display: inline-flex;
    transition: transform 0.25s ease, color 0.2s ease;
}

.vv-svc-acc-item.is-active .vv-svc-acc-chevron {
    transform: rotate(90deg);
    color: var(--vv-cyan);
}

.vv-svc-acc-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

.vv-svc-acc-body.is-open {
    max-height: 260px;
    opacity: 1;
}

.vv-svc-acc-body-inner {
    padding: 0.2rem 1.3rem 1.2rem;
    border-left: 2px solid #e3eaf2;
    margin-left: 1.3rem;
}

.vv-svc-acc-body-inner p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #51677d;
    margin-bottom: 0.8rem;
}

@media (max-width: 991.98px) {
    .vv-svc-accordion {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .vv-svc-accordion-media {
        min-height: 240px;
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .vv-svc-section {
        padding: 2.5rem 0 3.5rem;
    }

    .vv-svc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.8rem;
    }
}

/* ==========================================================================
   Statistics section (landing page)
   ========================================================================== */
.vv-stat-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #1B2C6E 0%, #33479F 100%);
    color: #fff;
}

.vv-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.4rem;
}

.vv-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vv-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vv-cyan);
}

.vv-stat-icon {
    font-size: 1.7rem;
    color: var(--vv-cyan);
    margin-bottom: 0.7rem;
}

.vv-stat-icon i {
    display: inline-block;
    transition: transform 0.25s ease;
}

.vv-stat-card:hover .vv-stat-icon i {
    transform: scale(1.15);
}

.vv-stat-value {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.vv-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767.98px) {
    .vv-stat-section {
        padding: 2.5rem 0;
    }

    .vv-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}


/* ==========================================================================
   Our Clients section (landing page)
   ========================================================================== */
.vv-client-section {
    padding: 3.5rem 0;
    background: #f6f8fc;
}

.vv-client-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vv-primary, #1B2C6E);
    margin-bottom: 0.4rem;
}

.vv-client-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--vv-primary, #1B2C6E);
    margin-bottom: 0.5rem;
}

.vv-client-subtitle {
    max-width: 640px;
    color: rgba(15, 23, 42, 0.65);
    margin-bottom: 2rem;
}

.vv-client-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
}

.vv-client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    min-height: 96px;
    padding: 1.2rem 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    perspective: 800px;
}

.vv-client-card:hover {
    transform: translateY(-4px);
    border-color: var(--vv-cyan, #12B5CB);
    box-shadow: 0 12px 24px -12px rgba(27, 44, 110, 0.25);
}

/* Flip 3D horizontal saat hover: logo (depan) -> nama perusahaan (belakang). */
.vv-client-flip {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vv-client-card:hover .vv-client-flip,
.vv-client-card:focus-within .vv-client-flip {
    transform: rotateY(180deg);
}

.vv-client-face {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.vv-client-face--back {
    transform: rotateY(180deg);
    padding: 0.25rem;
}

.vv-client-card img {
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
}

.vv-client-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .vv-client-section {
        padding: 2.5rem 0;
    }

    .vv-client-grid {
        gap: 0.9rem;
    }

    .vv-client-card {
        width: calc(50% - 0.5rem);
        min-height: 84px;
        padding: 1rem 0.8rem;
    }

    .vv-client-card img {
        max-height: 44px;
    }
}

/* ==========================================================================
   Our Recent Work / Projects section (landing page)
   ========================================================================== */
.vv-prj-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #1B2C6E 0%, #33479F 100%);
    color: #fff;
}

.vv-prj-head {
    margin-bottom: 2rem;
}

.vv-prj-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vv-cyan, #12B5CB);
    margin-bottom: 0.4rem;
}

.vv-prj-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.vv-prj-subtitle {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.vv-prj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
}

.vv-prj-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vv-prj-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vv-cyan, #12B5CB);
}

/* Klik: seluruh kartu project adalah link ke halaman detail. */
a.vv-prj-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.vv-prj-card .vv-prj-card-title {
    transition: color 0.2s ease;
}

a.vv-prj-card:hover .vv-prj-card-title {
    color: var(--vv-cyan, #12B5CB);
}

.vv-prj-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.05);
}

.vv-prj-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vv-prj-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.25);
}

.vv-prj-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.vv-prj-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.45rem;
}

.vv-prj-card-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.vv-empty--dark {
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 2.5rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.vv-empty--dark i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .vv-prj-section {
        padding: 2.5rem 0;
    }

    .vv-prj-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

/* ==========================================================================
   Projects slider (landing page)
   ========================================================================== */
.vv-prj-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vv-prj-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--vv-cyan, #12B5CB);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 0.35rem;
}

.vv-prj-link:hover {
    color: #fff;
}

.vv-prj-link i {
    transition: transform 0.2s ease;
}

.vv-prj-link:hover i {
    transform: translateX(4px);
}

.vv-prj-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3.2rem;
}

.vv-prj-track {
    position: relative;
}

.vv-prj-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.vv-prj-slide .vv-prj-grid {
    grid-template-columns: repeat(3, 1fr);
}

.vv-prj-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
}

.vv-prj-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vv-prj-arrow--prev { left: 1rem; }
.vv-prj-arrow--next { right: 1rem; }

.vv-prj-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.vv-prj-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    flex-shrink: 0;
    line-height: 1;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vv-prj-dot.is-active {
    background: var(--vv-cyan, #12B5CB);
    transform: scale(1.3);
}

.vv-prj-cta {
    margin-top: 2.2rem;
    text-align: center;
}

.vv-prj-section--page .vv-prj-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.vv-prj-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--vv-cyan, #12B5CB);
}

.vv-prj-card-link i {
    transition: transform 0.2s ease;
}

a.vv-prj-card:hover .vv-prj-card-link i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .vv-prj-slide .vv-prj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vv-prj-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .vv-prj-slide .vv-prj-grid {
        grid-template-columns: 1fr;
    }
    .vv-prj-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   CTA / Contact section (landing page) - form masuk ke master Inquiries
   ========================================================================== */
.vv-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1B2C6E 0%, #33479F 100%);
    color: #fff;
}

.vv-cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.vv-cta-info .vv-prj-subtitle {
    margin-bottom: 1.6rem;
}

.vv-cta-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.vv-cta-contacts li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.vv-cta-contacts i {
    color: var(--vv-cyan, #12B5CB);
    font-size: 1.05rem;
}

.vv-cta-contacts a {
    color: #fff;
    text-decoration: none;
}

.vv-cta-contacts a:hover {
    color: var(--vv-cyan, #12B5CB);
}

.vv-cta-form {
    background: #fff;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.35);
}

.vv-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.vv-cta-form input,
.vv-cta-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.9rem;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
}

.vv-cta-form input:focus,
.vv-cta-form textarea:focus {
    outline: none;
    border-color: var(--vv-cyan, #12B5CB);
    background: #fff;
}

.vv-cta-form textarea {
    min-height: 130px;
    resize: vertical;
}

.vv-cta-btn {
    border: 0;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
}

.vv-cta-alert {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vv-cta-alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.vv-cta-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

@media (max-width: 991.98px) {
    .vv-cta-section {
        padding: 3rem 0;
    }
    .vv-cta-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 575.98px) {
    .vv-cta-row {
        grid-template-columns: 1fr;
    }
    .vv-cta-form {
        padding: 1.3rem;
    }
}