.logo1 img {
    height: 90px;
    filter: invert(1) brightness(2);
}
.preloader .loader-logo img {
    filter: invert(1) brightness(2);
}
.hero-style .hero-slider-bg::before {
    background: rgb(10 43 80 / 39%);
}

@media (min-width: 1200px)  and (max-width: 1600px){

    .hero-style .xb-hero_content .sec-title .title {
        font-size: 80px;
        line-height: 116px;
        max-width: 80%;
    }

    .hero-style .hero-slide-content {
        padding-top: 160px;
        padding-bottom: 165px;
    }
    .hero-style {
        min-height: 800px;
    }

}



@media (max-width: 768px) {
    .logo1 img {
        height: 70px;
    }
    .xb-logo-mobile img {
    height: 69px;
}
.xb-logo-mobile {
    margin-bottom: 25px;
}
.xb-header-menu-scroll {
    padding: 30px 25px 40px;
}
}

/* ============================================================
   Vilara Booking — modern booking experience (namespaced .vb-)
   ============================================================ */
.vb-booking {
    --vb-navy: #0a2b50;
    --vb-navy-soft: #143a66;
    --vb-gold: #c69f56;
    --vb-gold-dark: #b1873b;
    --vb-ink: #1d2a3a;
    --vb-muted: #6c7a8c;
    --vb-line: #e6ebf2;
    --vb-bg: #f4f7fb;
    --vb-card: #ffffff;
    --vb-radius: 18px;
    --vb-radius-sm: 12px;
    --vb-shadow: 0 18px 50px rgba(10, 43, 80, 0.08);
    --vb-shadow-sm: 0 8px 24px rgba(10, 43, 80, 0.06);
    background: var(--vb-bg);
    padding: 90px 0 110px;
    color: var(--vb-ink);
    font-family: inherit;
}

.vb-booking *,
.vb-booking *::before,
.vb-booking *::after {
    box-sizing: border-box;
}

.vb-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Alerts */
.vb-alert {
    border-radius: var(--vb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.6;
    border: 1px solid transparent;
}
.vb-alert--success {
    background: #e9f7ef;
    border-color: #b7e4c7;
    color: #1b7a44;
}
.vb-alert--error {
    background: #fdecec;
    border-color: #f5c2c2;
    color: #b42318;
}
.vb-alert ul {
    margin: 0;
    padding-inline-start: 18px;
}

/* Grid layout */
.vb-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}

/* Cards */
.vb-card {
    background: var(--vb-card);
    border: 1px solid var(--vb-line);
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow-sm);
    padding: 30px;
    margin-bottom: 26px;
}
.vb-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.vb-card__num {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--vb-navy), var(--vb-navy-soft));
}
.vb-card__title {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: var(--vb-navy);
    line-height: 1.2;
}
.vb-card__subtitle {
    margin: 2px 0 0;
    font-size: 13.5px;
    color: var(--vb-muted);
}

/* Boat selection cards */
.vb-boats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.vb-boat {
    position: relative;
    border: 1.5px solid var(--vb-line);
    border-radius: var(--vb-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    background: #fff;
}
.vb-boat:hover {
    transform: translateY(-3px);
    box-shadow: var(--vb-shadow-sm);
}
.vb-boat input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vb-boat__img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    display: block;
    background: #dde6f1;
}
.vb-boat__body {
    padding: 12px 14px 14px;
}
.vb-boat__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--vb-navy);
    margin: 0 0 6px;
}
.vb-boat__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: var(--vb-muted);
}
.vb-boat__meta strong {
    color: var(--vb-ink);
    font-weight: 600;
}
.vb-boat__check {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--vb-line);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    transition: background .2s, border-color .2s;
}
.vb-boat input:checked ~ .vb-boat__check {
    background: var(--vb-gold);
    border-color: var(--vb-gold);
}
.vb-boat input:checked ~ .vb-boat__check::after {
    content: "\2713";
}
.vb-boat:has(input:checked) {
    border-color: var(--vb-gold);
    box-shadow: 0 0 0 3px rgba(198, 159, 86, .18);
}

/* Package chips */
.vb-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4px;
}
.vb-chip {
    position: relative;
    cursor: pointer;
}
.vb-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vb-chip__label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1.5px solid var(--vb-line);
    border-radius: var(--vb-radius-sm);
    padding: 12px 18px;
    transition: border-color .2s, background .2s;
    min-width: 150px;
}
.vb-chip__label strong {
    font-size: 14.5px;
    color: var(--vb-navy);
}
.vb-chip__label span {
    font-size: 12.5px;
    color: var(--vb-muted);
}
.vb-chip input:checked ~ .vb-chip__label {
    border-color: var(--vb-gold);
    background: rgba(198, 159, 86, .08);
}

/* Fields */
.vb-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.vb-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vb-field--full {
    grid-column: 1 / -1;
}
.vb-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--vb-ink);
}
.vb-input,
.vb-booking select.vb-input,
.vb-booking textarea.vb-input {
    width: 100%;
    height: 52px;
    border: 1.5px solid var(--vb-line);
    border-radius: var(--vb-radius-sm);
    padding: 0 16px;
    font-size: 15px;
    color: var(--vb-ink);
    background: #fbfcfe;
    transition: border-color .2s, box-shadow .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
}
.vb-booking textarea.vb-input {
    height: auto;
    padding: 14px 16px;
    resize: vertical;
    min-height: 96px;
    line-height: 1.6;
}
.vb-input:focus {
    outline: none;
    border-color: var(--vb-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(198, 159, 86, .15);
}
.vb-booking select.vb-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c7a8c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-inline-end: 42px;
}

/* Extras (addons + meals) */
.vb-extras {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.vb-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1.5px solid var(--vb-line);
    border-radius: var(--vb-radius-sm);
    padding: 16px 18px;
    transition: border-color .2s, box-shadow .2s;
}
.vb-extra.is-active {
    border-color: var(--vb-gold);
    box-shadow: 0 0 0 3px rgba(198, 159, 86, .12);
}
.vb-extra__info h5 {
    margin: 0 0 4px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--vb-navy);
}
.vb-extra__price {
    font-size: 13px;
    color: var(--vb-gold-dark);
    font-weight: 600;
}
.vb-extra__price em {
    color: var(--vb-muted);
    font-style: normal;
    font-weight: 500;
}
.vb-extra__desc {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--vb-muted);
}

/* Stepper */
.vb-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--vb-line);
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 auto;
}
.vb-stepper__btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: #f3f6fb;
    color: var(--vb-navy);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: background .15s, color .15s;
}
.vb-stepper__btn:hover {
    background: var(--vb-navy);
    color: #fff;
}
.vb-stepper__input {
    width: 40px;
    height: 34px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--vb-ink);
    background: #fff;
    -moz-appearance: textfield;
}
.vb-stepper__input::-webkit-outer-spin-button,
.vb-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Summary sidebar */
.vb-summary {
    position: sticky;
    top: 24px;
}
.vb-summary__card {
    background: linear-gradient(160deg, var(--vb-navy), var(--vb-navy-soft));
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow);
    padding: 26px;
    color: #eaf1fb;
}
.vb-summary__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: .2px;
}
.vb-summary__boat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.vb-summary__boat img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(255, 255, 255, .1);
}
.vb-summary__boat h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #fff;
}
.vb-summary__boat span {
    font-size: 13px;
    color: #aebfd6;
}
.vb-summary__meta {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.vb-summary__meta li {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
}
.vb-summary__meta span {
    color: #aebfd6;
}
.vb-summary__meta strong {
    color: #fff;
    font-weight: 600;
}

/* Availability pill */
.vb-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .08);
    color: #cdd9ec;
}
.vb-pill::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8aa0bf;
    flex: 0 0 auto;
}
.vb-pill.is-ok {
    background: rgba(45, 190, 120, .16);
    color: #8be9b6;
}
.vb-pill.is-ok::before { background: #2dbe78; }
.vb-pill.is-bad {
    background: rgba(255, 99, 99, .16);
    color: #ffb0b0;
}
.vb-pill.is-bad::before { background: #ff6363; }
.vb-pill.is-loading::before {
    background: var(--vb-gold);
    animation: vbPulse 1s infinite;
}
@keyframes vbPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* Quote breakdown */
.vb-lines {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}
.vb-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #cdd9ec;
}
.vb-line strong {
    color: #fff;
    font-weight: 600;
}
.vb-line--included strong {
    color: #8be9b6;
    font-weight: 600;
}
.vb-totals {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 16px;
    margin-bottom: 20px;
    display: grid;
    gap: 9px;
}
.vb-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #aebfd6;
}
.vb-row strong { color: #fff; }
.vb-row--total {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, .18);
}
.vb-row--total span:last-child { color: var(--vb-gold); }

/* Buttons */
.vb-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, opacity .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.vb-btn + .vb-btn { margin-top: 12px; }
.vb-btn--primary {
    background: linear-gradient(135deg, var(--vb-gold), var(--vb-gold-dark));
    color: #1c1407;
    box-shadow: 0 10px 26px rgba(198, 159, 86, .35);
}
.vb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(198, 159, 86, .45);
}
.vb-btn--ghost {
    background: rgba(255, 255, 255, .08);
    color: #eaf1fb;
    border: 1.5px solid rgba(255, 255, 255, .2);
}
.vb-btn--ghost:hover { background: rgba(255, 255, 255, .16); }

/* Sub-section label */
.vb-subsection { margin-top: 24px; }
.vb-sub-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--vb-navy);
    margin-bottom: 12px;
    letter-spacing: .2px;
}

/* Hours chips */
.vb-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vb-hour {
    border: 1.5px solid var(--vb-line);
    background: #fbfcfe;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vb-ink);
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s, transform .15s;
}
.vb-hour:hover { transform: translateY(-2px); border-color: var(--vb-gold); }
.vb-hour.is-active {
    background: linear-gradient(135deg, var(--vb-navy), var(--vb-navy-soft));
    border-color: var(--vb-navy);
    color: #fff;
}
.vb-hour.is-locked { cursor: default; }

/* Schedule (calendar + slots) */
.vb-schedule {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 26px;
    margin-top: 26px;
}
.vb-schedule__col { min-width: 0; }

/* Calendar */
.vb-calendar {
    border: 1.5px solid var(--vb-line);
    border-radius: var(--vb-radius-sm);
    padding: 16px;
    background: #fff;
    min-height: 300px;
}
.vb-calendar__loading {
    height: 280px;
    border-radius: var(--vb-radius-sm);
    background: linear-gradient(100deg, #f4f7fb 30%, #eef3f9 50%, #f4f7fb 70%);
    background-size: 200% 100%;
    animation: vbShimmer 1.2s infinite;
}
@keyframes vbShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.vb-calendar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.vb-calendar__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--vb-navy);
    text-transform: capitalize;
}
.vb-cal-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--vb-line);
    background: #fff;
    color: var(--vb-navy);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.vb-cal-nav:hover:not(:disabled) { background: var(--vb-navy); color: #fff; border-color: var(--vb-navy); }
.vb-cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.vb-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.vb-calendar__wd {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--vb-muted);
    padding: 4px 0 8px;
    text-transform: uppercase;
}
.vb-calendar__cell {
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 10px;
    background: #f4f7fb;
    color: var(--vb-ink);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: grid;
    place-items: center;
    position: relative;
    transition: transform .12s, box-shadow .12s, background .12s;
}
.vb-calendar__cell.is-empty { background: transparent; cursor: default; }
.vb-calendar__cell.is-available { background: #e7f7ef; color: #1b7a44; }
.vb-calendar__cell.is-limited { background: #fdf3e2; color: #b1873b; }
.vb-calendar__cell.is-full,
.vb-calendar__cell.is-past,
.vb-calendar__cell.is-beyond {
    background: #f4f7fb;
    color: #c2ccd9;
    cursor: not-allowed;
}
.vb-calendar__cell.is-selectable::after {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: .55;
}
.vb-calendar__cell.is-selectable:hover {
    transform: translateY(-2px);
    box-shadow: var(--vb-shadow-sm);
}
.vb-calendar__cell.is-selected {
    background: linear-gradient(135deg, var(--vb-gold), var(--vb-gold-dark)) !important;
    color: #1c1407 !important;
    box-shadow: 0 6px 16px rgba(198, 159, 86, .4);
}
.vb-calendar__cell.is-selected::after { background: #1c1407; opacity: .6; }

/* Legend */
.vb-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}
.vb-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--vb-muted);
}
.vb-legend__item i {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}
.vb-legend__item i.is-available { background: #cdeede; }
.vb-legend__item i.is-limited { background: #f6e3c0; }
.vb-legend__item i.is-full { background: #e2e8f1; }

/* Slots */
.vb-slots { min-height: 120px; }
.vb-slots__hint {
    color: var(--vb-muted);
    font-size: 14px;
    padding: 28px 16px;
    text-align: center;
    border: 1.5px dashed var(--vb-line);
    border-radius: var(--vb-radius-sm);
    margin: 0;
}
.vb-slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.vb-slot {
    border: 1.5px solid var(--vb-line);
    background: #fbfcfe;
    border-radius: var(--vb-radius-sm);
    padding: 12px 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--vb-ink);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    transition: border-color .15s, background .15s, transform .15s, color .15s;
}
.vb-slot:hover { transform: translateY(-2px); border-color: var(--vb-gold); }
.vb-slot em {
    font-style: normal;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--vb-gold-dark);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.vb-slot.is-active {
    background: linear-gradient(135deg, var(--vb-navy), var(--vb-navy-soft));
    border-color: var(--vb-navy);
    color: #fff;
}
.vb-slot.is-active em { color: #f0d9a8; }

/* Responsive */
@media (max-width: 1199px) {
    .vb-schedule { grid-template-columns: 280px minmax(0, 1fr); gap: 20px; }
}
@media (max-width: 991px) {
    .vb-grid { grid-template-columns: minmax(0, 1fr); }
    .vb-summary { position: static; margin-top: 4px; }
}
@media (max-width: 767px) {
    .vb-schedule { grid-template-columns: minmax(0, 1fr); }
    .vb-boats { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .vb-boat__img { height: 100px; }
}
@media (max-width: 575px) {
    .vb-booking { padding: 60px 0 80px; }
    .vb-card { padding: 22px 16px; }
    .vb-fields { grid-template-columns: minmax(0, 1fr); }
    .vb-boats { grid-template-columns: repeat(2, 1fr); }
    .vb-calendar__cell { font-size: 12.5px; border-radius: 8px; }
    .vb-slots__grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); }
    .vb-summary__card { padding: 22px 18px; }
}

/* Package includes (details + booking) */
.vb-package-includes {
    background: #fbfaf7;
    border: 1px solid #ece7dd;
    border-radius: 14px;
    padding: 22px 24px;
}
.vb-package-includes__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #1c1c1c;
}
.vb-include-list { margin: 0; display: grid; gap: 10px; }
.vb-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #333;
}
.vb-include-item__check {
    width: 22px; height: 22px;
    flex: 0 0 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #e7f5ec; color: #1f9254;
    font-size: 13px; font-weight: 700;
}
.vb-include-item__name { font-weight: 500; }
.vb-include-item__qty { color: #8a8a8a; font-size: 13px; }
.vb-include-item__tag {
    margin-inline-start: auto;
    font-size: 12px; font-weight: 600;
    color: #1f9254; background: #e7f5ec;
    padding: 3px 10px; border-radius: 999px;
}
.vb-include-item__price {
    margin-inline-start: auto;
    font-size: 13px; font-weight: 600; color: #b07d2b;
}
.vb-include-item--extra .vb-include-item__name::before {
    content: "+"; color: #b07d2b; font-weight: 700; margin-inline-end: 6px;
}

/* Booking-page package summary box */
.vb-pkg-box {
    margin-top: 18px;
    border: 1px solid #ece7dd;
    border-radius: 12px;
    padding: 16px 18px;
    background: #fbfaf7;
}
.vb-pkg-box[hidden] { display: none; }
.vb-pkg-box__title { font-size: 14px; font-weight: 700; margin: 0 0 10px; color: #1c1c1c; }
.vb-pkg-box__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.vb-pkg-box__item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #444; }
.vb-pkg-box__item i {
    width: 18px; height: 18px; flex: 0 0 18px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; font-style: normal; font-size: 11px; font-weight: 700;
}
.vb-pkg-box__item.is-included i { background: #e7f5ec; color: #1f9254; }
.vb-pkg-box__item.is-extra i { background: #f6edd9; color: #b07d2b; }
.vb-pkg-box__item span:last-child { margin-inline-start: auto; font-weight: 600; font-size: 12px; }
.vb-pkg-box__item.is-included span:last-child { color: #1f9254; }
.vb-pkg-box__item.is-extra span:last-child { color: #b07d2b; }

/* Gallery */
.vg-gallery { background: linear-gradient(180deg, #f8f6f2 0%, #fff 40%); }
.vg-head { display: flex; justify-content: center; margin-bottom: 36px; }
.vg-tabs {
    display: inline-flex; gap: 8px; padding: 6px;
    background: #fff; border: 1px solid #e8e2d8; border-radius: 999px;
    box-shadow: 0 10px 30px rgba(10, 43, 80, 0.06);
}
.vg-tab {
    border: 0; background: transparent; color: #5b6472;
    font-weight: 600; font-size: 15px; padding: 12px 24px; border-radius: 999px;
    cursor: pointer; transition: .25s ease;
}
.vg-tab.is-active { background: #0a2b50; color: #fff; box-shadow: 0 8px 20px rgba(10,43,80,.18); }
.vg-panel[hidden] { display: none !important; }
.vg-albums { display: grid; gap: 22px; }
.vg-album {
    border: 1px solid #ece7dd; border-radius: 18px; overflow: hidden;
    background: #fff; cursor: pointer; transition: .25s ease;
    box-shadow: 0 12px 30px rgba(10,43,80,.04);
}
.vg-album:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(10,43,80,.08); }
.vg-album.is-open { border-color: #c9b48a; }
.vg-album__cover { position: relative; aspect-ratio: 21/9; overflow: hidden; background: #eef2f6; }
.vg-album__img, .vg-photo__img, .vg-video-card__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity .35s ease, transform .35s ease;
}
.vg-album__body { padding: 20px 22px 18px; }
.vg-album__title { margin: 0 0 6px; font-size: 22px; color: #0a2b50; }
.vg-album__meta { margin: 0; color: #8a7b67; font-size: 13px; font-weight: 600; }
.vg-album__desc { margin: 10px 0 0; color: #5f6775; line-height: 1.6; }
.vg-album__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px; padding: 0 18px 18px;
}
.vg-album__grid.is-loading { opacity: .6; }
.vg-photo {
    border: 0; padding: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 1;
    background: #eef2f6; cursor: zoom-in;
}
.vg-photo:hover .vg-photo__img { transform: scale(1.05); }
.vg-videos {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px;
}
.vg-video-card {
    border-radius: 16px; overflow: hidden; background: #fff;
    border: 1px solid #ece7dd; box-shadow: 0 10px 24px rgba(10,43,80,.05);
}
.vg-video-card__thumb {
    position: relative; display: block; width: 100%; border: 0; padding: 0;
    aspect-ratio: 16/10; overflow: hidden; cursor: pointer; background: #0a2b50;
}
.vg-video-card__play {
    position: absolute; inset: 0; display: grid; place-items: center;
    color: #fff; font-size: 28px; background: rgba(10,43,80,.28);
}
.vg-video-card__body { padding: 16px 18px 18px; }
.vg-video-card__title { margin: 0 0 8px; font-size: 18px; color: #0a2b50; }
.vg-video-card__desc { margin: 0; color: #667085; font-size: 14px; line-height: 1.5; }
.vg-load-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
.vg-btn {
    border: 0; border-radius: 999px; padding: 12px 24px; font-weight: 600; cursor: pointer;
}
.vg-btn--ghost { background: #fff; color: #0a2b50; border: 1px solid #d9d2c5; }
.vg-empty { text-align: center; color: #667085; padding: 48px 16px; }
.vg-skeleton-grid { display: grid; gap: 22px; }
.vg-skeleton-grid--videos { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.vg-skeleton { border-radius: 16px; background: linear-gradient(90deg,#eef2f6 25%,#f8fafc 50%,#eef2f6 75%); background-size: 200% 100%; animation: vg-shimmer 1.2s infinite; }
.vg-skeleton--album { height: 220px; }
.vg-skeleton--video { height: 260px; }
@keyframes vg-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.vg-lightbox, .vg-modal {
    position: fixed; inset: 0; z-index: 9999;
}
.vg-lightbox {
    display: grid; place-items: center; background: rgba(8, 18, 32, .92);
    padding: 24px;
}
.vg-lightbox[hidden], .vg-modal[hidden] { display: none !important; }
.vg-lightbox__figure { margin: 0; max-width: min(1100px, 92vw); width: 100%; }
.vg-lightbox__figure img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 12px; }
.vg-lightbox__figure figcaption { color: #fff; text-align: center; margin-top: 12px; }
.vg-lightbox__close, .vg-lightbox__nav, .vg-modal__close {
    position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff;
    width: 44px; height: 44px; border-radius: 50%; font-size: 28px; cursor: pointer;
}
.vg-lightbox__close, .vg-modal__close { top: 20px; right: 20px; }
.vg-lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.vg-lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.vg-modal__backdrop { position: absolute; inset: 0; background: rgba(8,18,32,.88); }
.vg-modal__dialog {
    position: relative; z-index: 1; width: min(960px, 92vw); margin: 8vh auto 0;
    background: #000; border-radius: 16px; overflow: hidden;
}
.vg-modal__body iframe, .vg-modal__body video { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }
.vg-no-scroll { overflow: hidden; }
img.is-loaded { opacity: 1; }
img[data-src] { opacity: .2; }
@media (max-width: 767px) {
    .vg-album__cover { aspect-ratio: 16/10; }
    .vg-album__grid { grid-template-columns: repeat(2, 1fr); }
    .vg-tabs { width: 100%; }
    .vg-tab { flex: 1; padding: 10px 12px; font-size: 14px; }
}

/* Language switcher */
.vb-lang-switch { display: inline-flex; align-items: center; }
.vb-lang-switch__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; background: rgba(255,255,255,.08);
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: .2s ease;
}
.vb-lang-switch__btn:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.vb-lang-switch__code {
    display: inline-grid; place-items: center;
    min-width: 28px; height: 22px; padding: 0 6px;
    border-radius: 999px; background: #fff; color: #0a2b50;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.vb-lang-switch__label { white-space: nowrap; }
.header-right { gap: 12px; align-items: center; }
.vb-lang-mobile a span { font-weight: 700; }

/* Sticky header contrast for language button */
.is-sticky .vb-lang-switch__btn {
    border-color: rgba(10,43,80,.18);
    color: #0a2b50;
    background: #f4f7fb;
}
.is-sticky .vb-lang-switch__btn:hover { background: #e8eef6; color: #0a2b50; }
.is-sticky .vb-lang-switch__code { background: #0a2b50; color: #fff; }

@media (max-width: 1199px) {
    .vb-lang-switch__label { display: none; }
}
