/* Bigevo Global Solution Template Styles */
.bgv-header {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    min-height: 84px;
    margin: 0;
    background-color: #fff;
    border-bottom: 1px solid #dedede;
    border-radius: 0;
}

.bgv-header .container {
    display: flex;
    align-items: center;
}

.bgv-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bgv-brand {
    display: flex;
}

.bgv-logo-link {
    padding: 0;
}

.bgv-logo-img {
    width: auto;
    height: 48px;
}

.bgv-logo-img.brand--2 {
    width: auto;
    height: 60px;
}

.bgv-badge {
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    height: 48px;
    background-color: #000;
    color: #fff;
}

.bgv-nav-desktop {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.bgv-nav-list {
    padding: 0;
    margin: 0 auto 0;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
    width: 100%;
}

.bgv-nav-list .bgv-nav-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    display: inline-block;
    margin: 0;
    text-transform: capitalize;
}

.bgv-header .bgv-action {
    display: block;
}

.bgv-action-group {
    display: flex;
    margin-left: auto;
}

@media (max-width: 1199.98px) {
    .bgv-logo-img {
        height: 36px;
    }

    .bgv-badge {
        height: 36px;
    }

    .bgv-nav-list {
        gap: 24px;
    }
}

@media (max-width: 575.98px) {
    .bgv-header .container {
        width: 100%;
    }

    .bgv-logo-img {
        height: 28px;
    }

    .bgv-badge {
        height: 28px;
    }
}

/* ============================================================
   Hamburger Button
   ============================================================ */
.bgv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    flex-shrink: 0;
    z-index: 10001;
    position: relative;
}

.bgv-hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a202c;
    border-radius: 2px;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* ============================================================
   Mobile Menu — Close Button (mirrors hamburger position)
   ============================================================ */
.bgv-mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.bgv-mobile-menu__close-bar {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.bgv-mobile-menu__close-bar:first-child {
    transform: rotate(45deg);
}

.bgv-mobile-menu__close-bar:last-child {
    transform: rotate(-45deg);
}

.bgv-mobile-menu__close:hover .bgv-mobile-menu__close-bar {
    background-color: #38bdf8;
}

/* ============================================================
   Fullscreen Mobile Menu Overlay
   ============================================================ */
.bgv-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: #0a1931;
    display: flex;
    flex-direction: column;
    padding: 100px 40px 60px;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    overflow-y: auto;
}

.bgv-mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.bgv-mobile-menu__nav {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.bgv-mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.bgv-mobile-menu__item {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bgv-mobile-menu__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bgv-mobile-menu__link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.1;
    padding: 20px 0;
    transition: color 0.2s ease;
    letter-spacing: -0.02em;
}

.bgv-mobile-menu__link:hover {
    color: #38bdf8;
}

.bgv-mobile-menu__link--cta {
    color: #38bdf8;
    margin-top: 8px;
    border-top: none !important;
    font-size: clamp(20px, 5vw, 36px);
}

.bgv-mobile-menu__item:has(.bgv-mobile-menu__link--cta) {
    border-top: none;
    border-bottom: none;
    margin-top: 16px;
}

.bgv-mobile-menu__footer {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.bgv-mobile-menu__footer-badge {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
}

.bgv-btn-cta {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.bgv-btn-cta>svg {
    width: 14px;
    height: 14px;
}

.bgv-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bgv-section.bgv-global-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Awards & Achievements Section
   ========================================================== */
.bgv-awards {
    padding: 120px 0;
}

.bgv-awards__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bgv-awards__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin: 0;
    line-height: 1.3;
}

.bgv-awards__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.bgv-awards__btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.bgv-awards__btn:active {
    transform: scale(0.93);
}

.bgv-awards__btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.bgv-awards__btn--prev {
    background-color: #f1f3f5;
    color: #6c757d;
}

.bgv-awards__btn--prev:hover {
    background-color: #dee2e6;
}

.bgv-awards__btn--next {
    background-color: #1552A3;
    color: #ffffff;
}

.bgv-awards__btn--next:hover {
    background-color: #0f4493;
}

.bgv-awards__splide .splide__track {
    overflow: visible;
}

/* Award Card */
.bgv-award-card {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.bgv-award-card__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    padding: 0;
    display: block;
}

.bgv-award-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    right: 0;
}

.bgv-award-card__subtitle {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.bgv-award-card__name {
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0 0;
    line-height: 1.4;
}

@media (max-width: 91.98px) {
    .bgv-awards {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .bgv-awards {
        padding: 40px 0;
    }

    .bgv-awards__title {
        font-size: 20px;
    }

    .bgv-award-card__img {
        height: auto;
    }
}

/* Global Lead Form
   ========================================================== */

/* Hero layout */
.bgv-hero__row {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: calc(100vh - 84px);
    padding-top: 80px;
    padding-bottom: 80px;
}

.bgv-hero__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 16px;
    color: #383636;
}

.bgv-hero__form {
    flex: 0 0 50%;
    max-width: 50%;
}

.bgv-hero-badge {
    display: block;
    margin-bottom: 16px;
}

.bgv-badge-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(56, 54, 54, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 3px;
}

.bgv-badge-amount {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #1552A3;
}

.bgv-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #383636;
    margin-bottom: 20px;
}

.bgv-hl-word {
    display: inline-block;
    position: relative;
    isolation: isolate;
}

.bgv-hl-bar {
    position: absolute;
    inset: -2px -5px;
    background: #1552A3;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: -1;
    will-change: transform;
}

.bgv-hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #383636;
    margin-bottom: 24px;
}

.bgv-cert-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.bgv-cert-list li img {
    height: 44px;
    width: auto;
    display: block;
}

.bgv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #1552A3;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.bgv-hero-cta:hover {
    background-color: #0f4493;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .bgv-hero__row {
        gap: 0;
    }
}

@media (max-width: 575.98px) {
    .bgv-hero-badge {
        margin-bottom: 8px;
    }

    .bgv-badge-amount {
        font-size: 22px;
    }

    .bgv-hero-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .bgv-hero-desc {
        font-size: 14px;
        line-height: 1.375;
        margin-bottom: 16px;
    }

    .bgv-cert-list li img {
        height: 32px;
    }

    .bgv-hero-cta {
        gap: 6px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .bgv-hero-cta>svg {
        width: 18px;
        height: 18px;
    }
}

/* Form card */
.bgv-form-card {
    border-radius: 16px;
    padding: 28px 26px;
    color: #fff;
    background: #132869;
    background: -webkit-linear-gradient(222deg, rgba(19, 40, 105, 1) 0%, rgba(14, 24, 58, 1) 50%);
    background: -moz-linear-gradient(222deg, rgba(19, 40, 105, 1) 0%, rgba(14, 24, 58, 1) 50%);
    background: linear-gradient(222deg, rgba(19, 40, 105, 1) 0%, rgba(14, 24, 58, 1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132869", endColorstr="#0E183A", GradientType=0);
}

.bgv-form-header {
    text-align: center;
    margin-bottom: 16px;
}

.bgv-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.bgv-form-title-accent {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #38bdf8;
    margin: 0;
    line-height: 1.2;
}

.bgv-form-alert {
    background-color: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Goal selection */
.bgv-goal-section {
    margin-bottom: 14px;
}

.bgv-goal-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    text-align: center;
    margin-bottom: 4px;
}

.bgv-goal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.bgv-goal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    min-height: 36.56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bgv-goal-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.bgv-goal-btn.is-active {
    border-color: #38bdf8;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}

.bgv-goal-check-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.bgv-goal-btn.is-active .bgv-goal-check-icon {
    opacity: 1;
}

/* Field grid */
.bgv-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 14px;
}

.bgv-field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bgv-field-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 2px;
}

.bgv-field-input,
.bgv-field-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    padding: 8px 11px;
    width: 100%;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.bgv-field-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.bgv-field-input--error {
    border-color: rgba(239, 68, 68, 0.65) !important;
}

.bgv-field-error {
    display: none;
    font-size: 11px;
    color: #fca5a5;
    margin-top: 3px;
    min-height: 14px;
    line-height: 1.3;
}

.bgv-field-error:not(:empty) {
    display: block;
}

/* JustValidate-generated error labels */
.bgv-field-error-msg {
    display: block;
    font-size: 11px;
    color: #fca5a5;
    margin-top: 3px;
    line-height: 1.3;
}

.bgv-field-input:focus,
.bgv-field-select:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.bgv-field-input:-webkit-autofill,
.bgv-field-input:-webkit-autofill:hover,
.bgv-field-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #172e52 inset;
    -webkit-text-fill-color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    caret-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
}

.bgv-field-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='rgba(255,255,255,0.35)'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.bgv-field-select option {
    background: #0a1931;
    color: #fff;
}

/* ============================================================
   intl-tel-input — dark form theme
   ============================================================ */
.bgv-form-card .iti {
    width: 100%;
}

.bgv-form-card .iti__flag-button {
    background: rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px 0 0 7px;
    padding: 0 8px 0 10px;
    transition: background 0.2s ease;
}

.bgv-form-card .iti__flag-button:hover,
.bgv-form-card .iti__flag-button[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.11);
}

.bgv-form-card .iti__selected-dial-code {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
    margin-left: 5px;
}

.bgv-form-card .iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.38);
    margin-left: 4px;
}

.bgv-form-card .iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, 0.38);
    border-top-color: transparent;
}

/* Dropdown is appended to <body> via dropdownContainer option — scope-free selectors */
.iti__dropdown-content {
    background: #0d1f3c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    z-index: 99999;
}

.iti__search-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    width: calc(100% - 16px);
    margin: 8px;
    display: block;
    outline: none;
    box-sizing: border-box;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.iti__search-input:focus {
    border-color: rgba(56, 189, 248, 0.5);
}

.iti__country-list {
    background: transparent;
    border: none;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.iti__country {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    padding: 8px 12px;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(56, 189, 248, 0.1);
    color: #fff;
}

.iti__country-name {
    color: inherit;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.38);
}

.iti__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

/* reCAPTCHA */
.bgv-recaptcha-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

/* Submit button */
.bgv-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background: #38bdf8;
    color: #0a1931;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    margin-bottom: 12px;
}

.bgv-submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    animation: bgvSpin 0.75s linear infinite;
}

.bgv-submit.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
}

.bgv-submit.is-loading .bgv-submit-spinner {
    display: block;
}

@keyframes bgvSpin {
    to {
        transform: rotate(360deg);
    }
}

.bgv-submit:hover {
    background: #7dd3fc;
}

.bgv-submit:active {
    transform: scale(0.99);
}

.bgv-form-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Stats bar */
.bgv-stats-bar {
    background-color: #1552A3;
    padding: 40px 0;
}

.bgv-stats-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bgv-stats-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.bgv-stat-item {
    padding: 12px 0;
    text-align: center;
}

.bgv-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.bgv-stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0;
}

.bgv-stat-divider {
    width: 1px;
    height: 72px;
    background: rgba(255, 255, 255, 0.25);
}

/* Client logo bar
   ========================================================== */
.bgv-client-bar {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.bgv-client-splide .splide__track {
    overflow: hidden;
}

.bgv-client-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.bgv-client-logo {
    width: auto;
    height: 80px;
    display: block;
    filter: grayscale(1);
    opacity: 0.55;
    transition: opacity 0.25s ease, filter 0.25s ease;
    pointer-events: none;
}

.bgv-client-slide:hover .bgv-client-logo {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .bgv-client-logo {
        height: 60px;
    }
}

@media (max-width: 991.98px) {
    .bgv-hero__row {
        flex-direction: column;
        gap: 40px;
    }

    .bgv-hero__content,
    .bgv-hero__form {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .bgv-hero__content {
        text-align: center;
    }

    .bgv-cert-list {
        justify-content: center;
    }

    .bgv-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .bgv-form-card {
        padding: 22px 18px;
    }

    .bgv-form-title,
    .bgv-form-title-accent {
        font-size: 18px;
    }

    .bgv-field-grid {
        grid-template-columns: 1fr;
    }

    .bgv-recaptcha-wrap {
        transform: scale(0.82);
        transform-origin: left center;
    }

    .bgv-hero-title {
        font-size: 26px;
    }

    .bgv-hero__row {
        padding-top: 60px;
        padding-bottom: 48px;
    }
}

/* ============================================================
   Services — Stacking Cards
   bgv-services / bgv-service-card
   ============================================================ */

.bgv-services {
    position: relative;
    background-color: #080c18;
    padding: 120px 0;
    background-image: url('/assets/images//global/base-bg.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

/* Section header */
.bgv-services__header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    margin-bottom: 72px;
}

.bgv-services__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #213666;
    margin: 0 0 16px;
}

.bgv-services__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

/* Stack wrapper — GSAP pins the section and drives all stacking */
.bgv-services__stack {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    height: auto;
    overflow: hidden;
}

/* Individual service card — absolutely stacked; GSAP Observer/Timeline animates them */
.bgv-service-card {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 24px 160px 24px 24px;
    padding: 24px;
    overflow: hidden;
    filter: drop-shadow(0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06));
    transform-origin: top center;
    will-change: transform;
}

.bgv-service-card:nth-child(1) {
    z-index: 1;
}

.bgv-service-card:nth-child(2) {
    z-index: 2;
}

.bgv-service-card:nth-child(3) {
    z-index: 3;
}

.bgv-service-card:nth-child(4) {
    z-index: 4;
}

/* Two-column card interior */
.bgv-service-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* ---- Content column ---- */
.bgv-service-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bgv-service-card__num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.bgv-service-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: #000;
    line-height: 1.0;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
}

/* Pill tags */
.bgv-service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.bgv-service-tag {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 9999px;
    border: 1.5px solid #EAF7FF;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    background: #EAF7FF;
    line-height: 1;
}

.bgv-service-card__desc {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin: 0;
    max-width: 440px;
}

/* ---- Visual/media column ---- */
.bgv-service-card__visual {
    position: relative;
    overflow: hidden;
    border-radius: 18px 140px 18px 18px;
    background: #0d1424;
}

.bgv-service-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   Services — Responsive
   ============================================================ */

@media (max-width: 1199.98px) {
    .bgv-service-card__title {
        font-size: 44px;
    }

    .bgv-service-card__content {
        padding: 32px 24px;
    }

    .bgv-services__header {
        margin-bottom: 60px;
    }
}

@media (max-width: 991.98px) {
    .bgv-services {
        padding: 80px 0 180px;
    }

    .bgv-service-card__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .bgv-service-card__content {
        padding: 48px 40px;
    }

    .bgv-service-card__title {
        font-size: 38px;
    }

    .bgv-service-card__visual {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .bgv-services {
        padding: 60px 0 0;
    }

    .bgv-services__header {
        padding: 0 20px;
        margin-bottom: 48px;
    }

    .bgv-services__title {
        font-size: 28px;
    }

    .bgv-services__stack {
        padding: 0 12px;
        height: 460px;
    }

    .bgv-service-card {
        border-radius: 24px 120px 24px 24px;
    }

    .bgv-service-card__content {
        order: 1;
        padding: 24px 0 0;
    }

    .bgv-service-card__num {
        margin-bottom: 12px;
    }

    .bgv-service-card__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .bgv-service-card__tags {
        gap: 6px;
        margin-bottom: 12px;
    }

    .bgv-service-tag {
        padding: 6px 12px;
        font-size: 10px;
    }

    .bgv-service-card__desc {
        font-size: 13px;
    }

    .bgv-service-card__visual {
        min-height: 120px;
    }
}

/* ============================================================
   Case Study — bgv-case-study
   ============================================================ */
.bgv-case-study {
    position: relative;
    background-color: #061a40;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
}

.bgv-case-study__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #fff;
}

.bgv-case-study__header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    margin-bottom: 72px;
}

.bgv-case-study__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4d97bf;
    margin: 0 0 16px;
}

.bgv-case-study__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.bgv-case-study__slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.bgv-case-study__item {
    background-image: url('/assets/images/global/case-bg.webp');
    background-position: center center;
    background-size: cover;
    border: 1px solid #0dcaf0;
    border-radius: 16px;
    padding: 40px 48px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.bgv-case-study__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.bgv-case-study__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bgv-case-study__logo {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.bgv-case-study__metric {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px;
    background: linear-gradient(to right, #63e6be, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bgv-case-study__desc {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 20px;
}

.bgv-case-study__btn {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 24px;
    background: #0dcaf0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease;
}

.bgv-case-study__btn:hover {
    background: #3dd5f3;
}

.bgv-case-study__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bgv-case-study__img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1199.98px) {
    .bgv-case-study__header {
        margin-bottom: 60px;
    }
}

@media (max-width: 991.98px) {
    .bgv-case-study {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .bgv-case-study__item {
        padding: 28px 24px;
    }

    .bgv-case-study__body {
        grid-template-columns: 1fr;
    }

    .bgv-case-study__metric {
        font-size: 56px;
    }
}

@media (max-width: 575.98px) {
    .bgv-case-study {
        padding: 60px 0;
    }

    .bgv-case-study__header {
        margin-bottom: 48px;
    }

    .bgv-case-study__slider {
        max-width: 260px;
    }

    .bgv-case-study__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .bgv-case-study__metric {
        font-size: 48px;
    }

    .bgv-case-study__desc {
        font-size: 16px;
    }

    .bgv-case-study__info {
        order: 2;
    }

    .bgv-case-study__media {
        order: 1;
    }
}

/* Case Study — Detail panel */
.bgv-case-study__detail {
    position: absolute;
    inset: 0;
    padding: 32px 40px;
    display: none;
    flex-direction: column;
    background-image: url('/assets/images/global/case-bg.webp');
    background-position: center center;
    background-size: cover;
    border-radius: 16px;
    z-index: 10;
    overflow-y: auto;
}

.bgv-cs-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(13, 202, 240, 0.35);
    border-radius: 50%;
    background: rgba(6, 26, 64, 0.55);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.bgv-cs-close:hover {
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.15);
}

/* Desktop-only: hide Read More button, close button, activate custom cursor */
@media (min-width: 768px) {
    .bgv-case-study__btn {
        display: none;
    }

    .bgv-cs-close {
        display: none;
    }

    .bgv-case-study__item {
        cursor: none;
    }
}

/* Custom follow cursor for case study cards */
.bgv-cs-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #061a40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bgv-cs-cursor__primary {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}

.bgv-cs-cursor__sep {
    width: 22px;
    height: 1px;
    background: rgba(6, 26, 64, 0.25);
    flex-shrink: 0;
}

.bgv-cs-cursor__secondary {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    opacity: 0.5;
}

.bgv-case-study__detail-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
}

.bgv-case-study__detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.bgv-case-study__detail-stats {
    display: flex;
    gap: 12px;
}

.bgv-case-study__stat {
    flex: 1;
    background: rgba(13, 202, 240, 0.07);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bgv-case-study__stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0dcaf0;
    line-height: 1;
}

.bgv-case-study__stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bgv-case-study__detail-text {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.bgv-case-study__detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.bgv-case-study__detail-tags span {
    font-size: 11px;
    font-weight: 600;
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.09);
    border: 1px solid rgba(13, 202, 240, 0.25);
    border-radius: 20px;
    padding: 5px 13px;
    letter-spacing: 0.03em;
}

@media (max-width: 767.98px) {
    .bgv-case-study__detail {
        padding: 28px 20px;
    }

    .bgv-case-study__detail-stats {
        gap: 8px;
    }

    .bgv-case-study__stat-value {
        font-size: 16px;
    }

    .bgv-case-study__detail-title {
        font-size: 13px;
    }
}

/* Case Study — Image Gallery (MamaSuka / Avian) */
.bgv-case-study__gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-start;
}

.bgv-cs-gallery__thumb {
    padding: 0;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    cursor: none;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 80px;
    height: 52px;
    transition: border-color 0.2s;
}

.bgv-cs-gallery__thumb:hover {
    border-color: rgba(13, 202, 240, 0.5);
}

.bgv-cs-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bgv-cs-gallery__thumb:hover img {
    transform: scale(1.07);
}

/* Gallery image lightbox */
.bgv-cs-img-modal {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    border-radius: 16px;
    overflow: hidden;
    background: #03071a;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.bgv-cs-img-modal__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bgv-cs-img-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(13, 202, 240, 0.35);
    border-radius: 50%;
    background: rgba(6, 26, 64, 0.75);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
    transition: border-color 0.2s, background 0.2s;
}

.bgv-cs-img-modal__close:hover {
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.2);
}

@media (max-width: 767.98px) {
    .bgv-case-study__gallery {
        flex-wrap: wrap;
    }
    .bgv-cs-gallery__thumb {
        flex: 0 0 calc(50% - 3px);
        height: 48px;
    }
}

/* ============================================================
   Testimonials — bgv-testimonials / bgv-testimonial-card
   ============================================================ */
.bgv-testimonials {
    padding: 120px 0;
    /* This layers a 50% white tint over the image */
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url('/assets/images/global/base-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bgv-testimonials__header {
    text-align: center;
    margin-bottom: 72px;
}

.bgv-testimonials__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #808080;
    margin: 0 0 10px;
}

.bgv-testimonials__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
}

/* Splide overrides — no default chrome */
.bgv-testimonial-splide .splide__track {
    overflow: visible;
}

.bgv-testimonial-splide {
    overflow: hidden;
}

.bgv-testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.bgv-testimonial-card__rating {
    font-size: 20px;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bgv-testimonial-card__text {
    font-size: 18px;
    line-height: 1.75;
    color: #1a202c;
    flex: 1;
    margin: 0 0 24px;
}

.bgv-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bgv-testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
    display: block;
}

.bgv-testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bgv-testimonial-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.bgv-testimonial-card__role {
    font-size: 14px;
    color: #808080;
    line-height: 1.3;
}

/* Custom arrows — hidden on tablet/desktop */
.bgv-testimonial-controls {
    display: none;
}

.bgv-testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1a202c;
    background: transparent;
    color: #1a202c;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.bgv-testimonial-arrow:hover {
    background: #1a202c;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .bgv-testimonials__header {
        margin-bottom: 60px;
    }

    .bgv-testimonial-card__text {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .bgv-testimonials {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .bgv-testimonials {
        padding: 60px 0;
    }

    .bgv-testimonials__header {
        margin-bottom: 48px;
    }

    .bgv-testimonials__eyebrow {
        font-size: 10px;
    }

    .bgv-testimonials__title {
        font-size: 28px;
    }

    .bgv-testimonial-card__text {
        font-size: 14px;
    }

    .bgv-testimonial-card__avatar {
        width: 50px;
        height: 50px;
    }

    .bgv-testimonial-card__name {
        font-size: 14px;
    }

    .bgv-testimonial-card__role {
        font-size: 12px;
    }

    .bgv-testimonial-controls {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 24px;
    }
}

/* ============================================================
   Footer — bgv-footer
   ============================================================ */
.bgv-footer {
    padding: 60px 0 0;
    background-color: #DAE1E9;
}

.bgv-footer__grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

.bgv-footer__brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.bgv-footer__brand-logo {
    height: 40px;
    display: block;
}

.bgv-footer__brand-logo.brand--2 {
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
    height: 60px;
}

.bgv-footer__brand-badge {
    background-color: #000;
    color: #fff;
    padding: 16px 8px;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.bgv-footer__desc {
    color: #2B2B2B;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.bgv-footer__partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    opacity: 0.75;
}

.bgv-footer__partner {
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
}

.bgv-footer__nav-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    color: #2B2B2B;
}

.bgv-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bgv-footer__nav-item {
    margin-bottom: 8px;
}

.bgv-footer__nav-link {
    text-decoration: none;
    color: #2B2B2B;
    font-size: 14px;
    display: inline-block;
    transition: color 0.2s ease;
}

.bgv-footer__nav-link:hover {
    color: #1a202c;
}

.bgv-footer__address {
    font-style: normal;
    color: #2B2B2B;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.bgv-footer__contact-info {
    color: #2B2B2B;
    font-size: 14px;
    margin: 0 0 4px;
}

.bgv-footer__social-list {
    display: flex;
    gap: 16px;
}

.bgv-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #163C73;
    transition: color 0.2s ease;
}

.bgv-footer__social-link:hover {
    color: #174586;
}

.bgv-footer__divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin: 40px 0;
}

.bgv-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
}

.bgv-footer__copyright {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
}

.bgv-footer__legal {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bgv-footer__legal-item+.bgv-footer__legal-item::before {
    content: '·';
    color: #adb5bd;
    padding-right: 4px;
}

.bgv-footer__legal-link {
    text-decoration: none;
    color: #6c757d;
    font-size: 13px;
    transition: color 0.2s ease;
}

.bgv-footer__legal-link:hover {
    color: #1a202c;
}

.bgv-footer__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.bgv-footer__hours-time {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #2B2B2B;
    line-height: 1.4;
}

.bgv-footer__hours-tz {
    font-size: 11px;
    color: #6c757d;
}

.bgv-footer__hours-day {
    font-size: 14px;
    color: #2B2B2B;
    text-align: right;
    white-space: nowrap;
}

.bgv-footer__col--social {
    min-width: 220px;
}

@media (min-width: 992px) {
    .bgv-footer__col--brand {
        max-width: 350px;
        width: 100%;
        flex-grow: 1;
    }
}

@media (max-width: 991.98px) {
    .bgv-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bgv-footer__col--brand {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .bgv-footer__grid {
        flex-direction: column;
    }

    .bgv-footer__col--brand {
        grid-column: span 1;
    }

    .bgv-footer__bottom {
        flex-direction: column-reverse;
        gap: 12px;
        text-align: center;
    }

    .bgv-footer__desc {
        font-size: 12px;
    }

    .bgv-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   Header — Responsive: hamburger / desktop nav breakpoint
   ============================================================ */
@media (min-width: 992px) {
    .bgv-hamburger {
        display: none;
    }

    .bgv-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .bgv-nav-desktop {
        display: none;
    }

    .bgv-hamburger {
        display: flex;
    }

    /* Keep CTA visible but compact on tablet */
    #btn-contact-sales {
        font-size: 13px;
        padding: 8px 16px !important;
    }

    #btn-contact-sales svg {
        display: none;
    }
}

@media (max-width: 575.98px) {

    /* Hide CTA in header on small screens — it's in the mobile menu */
    #btn-contact-sales {
        display: none !important;
    }

    .bgv-mobile-menu {
        padding: 100px 28px 48px;
    }
}

/* ============================================================
   Thank You Page — bgv-thank-you
   ============================================================ */
.bgv-thank-you-section {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 24px;
}

.bgv-thank-you-wrap {
    width: 100%;
    max-width: 440px;
}

.bgv-thank-you-card {
    text-align: center;
}

.bgv-thank-you-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin: 0 auto 24px;
}

.bgv-thank-you-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 24px;
}

.bgv-thank-you-btn {
    text-decoration: none;
    display: inline-flex;
    width: auto;
    padding: 11px 40px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .bgv-thank-you-section {
        padding: 40px 16px;
    }

    .bgv-thank-you-icon {
        width: 56px;
        height: 56px;
    }
}