/* ============================================================
   MYK Animated SVG Logo
   ============================================================ */
#header_main {
    margin: 20px 0px;
}

.header_1.is-fixed.is-small {
    margin: 0px !important;
}

/* Container */
.myk-logo-container {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG base */
.myk-logo {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Stroke layer (line drawing) */
.logo-stroke {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 0.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

/* Fill layer (progressive wipe) */
.logo-fill {
    fill: #ffffff;
    stroke: transparent;
    clip-path: inset(100% 0 0 0);
}

/* --- 1. INITIAL BUILD-UP (page load) --- */
.build-up-initial .logo-stroke {
    animation: mykStrokeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.build-up-initial .logo-fill {
    animation: mykWipeUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --- 2. BUILD-DOWN (hover out / deconstruction) --- */
.build-down .logo-stroke {
    stroke-dashoffset: 0;
    animation: mykStrokeOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.build-down .logo-fill {
    clip-path: inset(0 0 0 0);
    animation: mykWipeDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --- 3. FAST BUILD-UP (reconstruct after hover) --- */
.build-up-fast .logo-stroke {
    stroke-dashoffset: 100;
    animation: mykStrokeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.build-up-fast .logo-fill {
    clip-path: inset(100% 0 0 0);
    animation: mykWipeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --- KEYFRAMES --- */
@keyframes mykStrokeIn {
    0% {
        stroke-dashoffset: 100;
        stroke: #ffffff;
    }

    70% {
        stroke-dashoffset: 0;
        stroke: #ffffff;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: transparent;
    }
}

@keyframes mykWipeUp {

    0%,
    70% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes mykStrokeOut {
    0% {
        stroke-dashoffset: 0;
        stroke: transparent;
    }

    30% {
        stroke-dashoffset: 0;
        stroke: #ffffff;
    }

    100% {
        stroke-dashoffset: 100;
        stroke: #ffffff;
    }
}

@keyframes mykWipeDown {
    0% {
        clip-path: inset(0 0 0 0);
    }

    30%,
    100% {
        clip-path: inset(100% 0 0 0);
    }
}

/* --- Header Logo Sizing --- */

/* Desktop header logo */
#site-logo .myk-logo-container {
    width: 60px;
    height: 60px;
}

/* Canvas sidebar logo */
.canvas-nav-wrap .side-bar>.main-logo .myk-logo-container {
    width: 110px;
    height: 110px;
}

/* Mobile nav logo */
.inner-mobile-nav>.main-logo .myk-logo-container {
    width: 60px;
    height: 60px;
}

/* ============================================================
   Video in Swiper Cards
   ============================================================ */

/* Match video styling to img inside card-media */
.tf-card-box .card-media video {
    width: 100%;
    object-fit: cover;
    display: block;
}

.tf-card-box {
    background: none;
    padding: 0px;
    margin: 0px;
}

.tf-card-box .card-media {
    padding: 0px;
    margin: 0px;
}

.tf-card-box .card-media video {
    padding: 0px;
    margin: 0px;
}

.flat-pages-title {
    padding-top: 40px;
}

.pages-title .content h1 {
    margin-bottom: 15px;
}

.pages-title .content p {
    margin-bottom: 30px;
}

.home-1 .flat-pages-title .content {
    padding-bottom: 55px;
}

/* JS Sticky Calendar Toolbar */
.sticky-calendar-toolbar {
    transition: background-color 0.3s ease;
}

.sticky-calendar-toolbar.is-sticky {
    position: fixed;
    z-index: 50;
    background-color: #161616;
    padding: 30px 20px 10px 20px;
}

#calendar .tf-card-box.style-1 {
    padding: 0px;
}

#calendar .widget-menu-tab {
    flex-wrap: nowrap;
}

#calendar .tf-card-box.style-1 .card-media img {
    width: 100%;
    height: 100%;
}

#basicQuestions .box-icon-item .title {
    color: #DDF247;
}

.tf-author-box.style-2 .author-avatar {
    width: 200px;
}

.widget-income {
    background-image: url(../images/elements/stars.webp);
}

/* ============================================================
   Booking Wizard
   ============================================================ */

/* ── Fixed Stepper Bar (below menu) ───────────────────────────── */
.booking-stepper-bar {
    z-index: 98;
    background: #161616;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/* When header goes to is-fixed (top:-100%), hide stepper above viewport too */
header.is-fixed~.tf-section-2 .booking-stepper-bar {
    top: -200px !important;
    position: fixed;
    left: 0;
    right: 0;
}

/* When header slides in (is-fixed.is-small → top:0), stepper sits below it */
header.is-fixed.is-small~.tf-section-2 .booking-stepper-bar {
    top: 87px !important;
}


.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 14px 0;
    position: relative;
}

.stepper-track {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    z-index: 0;
}

.stepper-progress {
    height: 100%;
    background: #DDF247;
    border-radius: 3px;
    width: 0;
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, .4);
    background: #161616;
    transition: all .3s ease;
}

.stepper-step.active .step-circle {
    border-color: #DDF247;
    color: #161616;
    background: #DDF247;
    box-shadow: 0 0 20px rgba(221, 242, 71, .3);
}

.stepper-step.completed .step-circle {
    border-color: #DDF247;
    color: #DDF247;
    background: transparent;
}

.step-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    font-weight: 500;
    transition: color .3s ease;
}

.stepper-step.active .step-label {
    color: #DDF247;
}

.stepper-step.completed .step-label {
    color: rgba(255, 255, 255, .7);
}

.stepper-step.clickable {
    cursor: pointer;
}

.stepper-step.clickable:hover .step-circle {
    border-color: #DDF247;
    box-shadow: 0 0 12px rgba(221, 242, 71, .15);
}

.stepper-step.clickable:hover .step-label {
    color: rgba(255, 255, 255, .9);
}

/* ── Scrollable Content Area ──────────────────────────────────── */
.booking-content-area {
    padding-top: 110px;
    padding-bottom: 140px;
}

.booking-step {
    display: none;
    animation: fadeInUp .4s ease;
}

.booking-step.active {
    display: block;
}

/* Date cards */
.booking-date-card {
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;
}

.booking-date-card:not(.is-soldout):hover {
    border-color: rgba(221, 242, 71, .4);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(221, 242, 71, .1);
}

.booking-date-card.selected {
    border-color: #DDF247 !important;
    box-shadow: 0 0 25px rgba(221, 242, 71, .2);
}

.booking-date-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #DDF247;
    color: #161616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 5;
}

.booking-date-card.is-soldout {
    cursor: not-allowed;
    pointer-events: none;
}

.booking-date-card.is-soldout .card-media img,
.booking-date-card.is-soldout h5.name,
.booking-date-card.is-soldout .author {
    opacity: .4;
}

.soldout-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(255, 50, 50, .9);
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 3;
}

.booking-date-card h5 {
    padding: 0px 10px;
}

.booking-date-card .author {
    padding: 10px 15px;
}

/* Ticket cards */
.ticket-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.ticket-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
    transition: all .3s ease;
}

.ticket-card:hover {
    border-color: rgba(221, 242, 71, .3);
    background: rgba(255, 255, 255, .05);
}

.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.ticket-card-header h4 {
    margin: 0;
    font-size: 20px;
}

.ticket-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin: 6px 0 0;
    line-height: 1.4;
}

.ticket-minimum {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #DDF247;
    background: rgba(221, 242, 71, .1);
    border: 1px solid rgba(221, 242, 71, .25);
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ticket-min-warning {
    margin-top: 10px;
    font-size: 12px;
    color: #ff6b6b;
    padding: 6px 12px;
    background: rgba(255, 107, 107, .08);
    border: 1px solid rgba(255, 107, 107, .2);
    border-radius: 6px;
}

.ticket-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #DDF247;
    display: block;
}

.price-per {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.ticket-qty-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.qty-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.qty-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    line-height: 1;
}

.qty-btn:hover {
    border-color: #DDF247;
    color: #DDF247;
    background: rgba(221, 242, 71, .1);
}

.qty-value {
    font-size: 20px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.extra-card {
    border-left: 3px solid rgba(221, 242, 71, .3);
}

/* Payment form */
.payment-form-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 30px;
}

.payment-form-card .form-group {
    margin-bottom: 20px;
}

.payment-form-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.payment-form-card input.style-1 {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: border-color .3s ease;
}

.payment-form-card input.style-1:focus {
    outline: none;
    border-color: #DDF247;
    box-shadow: 0 0 0 3px rgba(221, 242, 71, .1);
}

/* ── intl-tel-input Dark Theme ────────────────────────────────── */
.iti {
    width: 100%;
    font-size: 15px;
    font-family: inherit;
}

.iti__tel-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 15px !important;
    font-family: inherit !important;
    transition: border-color .3s ease;
}

.iti__tel-input:focus {
    outline: none;
    border-color: #DDF247 !important;
    box-shadow: 0 0 0 3px rgba(221, 242, 71, .1);
}

.iti__tel-input::placeholder {
    color: rgba(255, 255, 255, .35);
    font-size: 15px !important;
    font-family: inherit !important;
    font-weight: 400;
}

.iti__selected-dial-code {
    color: rgba(255, 255, 255, .8);
    font-size: 15px !important;
}

.iti__arrow {
    border-top-color: rgba(255, 255, 255, .5);
}

.iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, .5);
}

.iti__country-container {
    left: 0;
}

.iti__dropdown-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 8px !important;
}

.iti__search-input {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 6px !important;
    color: #fff !important;
    padding: 10px 14px;
    font-size: 15px !important;
    font-family: inherit !important;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, .35);
    font-size: 15px !important;
}

.iti__country {
    padding: 10px 14px;
}

.iti__country:hover,
.iti__country--highlight {
    background: rgba(221, 242, 71, .08) !important;
}

.iti__country-name {
    color: #fff;
    font-size: 15px !important;
}

.iti__dial-code {
    color: rgba(255, 255, 255, .6);
    font-size: 15px !important;
}

.iti__flag-box {
    margin-right: 10px;
}

.iti__selected-country-primary {
    background: transparent !important;
    border-radius: 8px 0 0 8px;
    padding: 0 10px 0 14px;
}

.iti__selected-country-primary:hover {
    background: rgba(255, 255, 255, .05) !important;
}

/* ── Stripe Card Element ──────────────────────────────────────── */
.stripe-card-element {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color .3s ease, box-shadow .3s ease;
    min-height: 24px;
}

.stripe-card-element:hover {
    border-color: rgba(221, 242, 71, .3);
}

.stripe-card-element.StripeElement--focus {
    border-color: #DDF247;
    box-shadow: 0 0 0 3px rgba(221, 242, 71, .1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #ff5252;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, .1);
}

.stripe-card-errors {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff5252;
    font-size: 13px;
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(255, 82, 82, .08);
    border-radius: 8px;
    border: 1px solid rgba(255, 82, 82, .2);
    animation: fadeInUp .3s ease;
}

.stripe-card-errors i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Payment Processing Overlay ───────────────────────────────── */
.payment-processing {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    background: rgba(221, 242, 71, .04);
    border-radius: 16px;
    border: 1px solid rgba(221, 242, 71, .1);
}

.payment-processing p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

.payment-processing .processing-sub {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
}

.processing-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(221, 242, 71, .2);
    border-top-color: #DDF247;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Secure Badge ─────────────────────────────────────────────── */
.stripe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.stripe-badge svg {
    opacity: .5;
}

/* ── Booking Terms Checkbox ──────────────────────────────────── */
.booking-terms-checkbox {
    margin-bottom: 0 !important;
}

.terms-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    transition: all .3s ease;
    font-weight: 400 !important;
}

.terms-label:hover {
    border-color: rgba(221, 242, 71, .3);
    background: rgba(255, 255, 255, .05);
}

.terms-label.checked {
    border-color: rgba(221, 242, 71, .4);
    background: rgba(221, 242, 71, .05);
}

.terms-label input[type="checkbox"] {
    display: none;
}

.terms-label .checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    margin-top: 1px;
    position: relative;
}

.terms-label.checked .checkmark {
    background: #DDF247;
    border-color: #DDF247;
}

.terms-label.checked .checkmark::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: solid #161616;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.terms-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}

.terms-text a {
    color: #DDF247;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: opacity .2s ease;
}

.terms-text a:hover {
    opacity: .8;
}

/* ── Booking Reference ────────────────────────────────────────── */
.booking-ref {
    color: #DDF247;
    font-size: 16px;
    margin: 10px auto 20px;
    padding: 10px 20px;
    background: rgba(221, 242, 71, .08);
    border-radius: 10px;
    display: inline-block;
}

.booking-ref strong {
    font-weight: 800;
    font-size: 18px;
}

/* ── Button Spinner ───────────────────────────────────────────── */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(22, 22, 22, .3);
    border-top-color: #161616;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* ── Fixed Summary Bar (above bottom actions) ─────────────────── */
.booking-summary-bar {
    position: fixed;
    bottom: 71px;
    left: 0;
    right: 0;
    z-index: 100;
    background: #DDF247;
    border-top: 1px solid rgba(221, 242, 71, .15);
    border-bottom: 1px solid rgba(221, 242, 71, .08);
    padding: 12px 0;
}

.summary-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.summary-bar-details {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex: 1;
}

.summary-bar-date {
    display: flex;
    align-items: center;
    color: #161616;
    font-weight: 600;
    font-size: 17px;
}

.summary-bar-date i {
    color: #161616;
    font-size: 16px;
}

.summary-bar-time {
    color: rgba(0, 0, 0, .8);
    font-weight: 400;
    font-size: 13px;
}

.summary-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #fff;
    padding: 2px 10px;
    background: #161616;
    border-radius: 6px;
}

.summary-bar-item span:last-child {
    color: #DDF247;
    font-weight: 600;
}

.summary-bar-total {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-bar-total span:first-child {
    font-size: 16px;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.summary-bar-price {
    font-size: 22px;
    font-weight: 800;
    color: #161616;
}

.summary-bar-prompt span {
    font-size: 13px;
    color: #161616;
    font-style: italic;
}

/* ── Fixed Bottom Action Bar ──────────────────────────────────── */
.booking-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: rgba(22, 22, 22, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 0;
}

.bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.bottom-bar-actions {
    display: flex;
    gap: 10px;
}

.bottom-bar-actions .tf-button {
    min-width: 140px;
    text-align: center;
}

.bottom-bar-actions .tf-button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.bottom-bar-actions .tf-button.style-1 {
    background: #DDF247 !important;
    color: #161616 !important;
    border-color: #DDF247 !important;
    font-weight: 700;
}

.bottom-bar-actions .tf-button.style-1:hover {
    background: #c8dd20 !important;
}

.bottom-bar-actions .tf-button.style-1 span,
.bottom-bar-actions .tf-button.style-1 i {
    color: #161616 !important;
    display: inline !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.bottom-bar-actions .tf-button.style-2 {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .3) !important;
}

.bottom-bar-actions .tf-button.style-2:hover {
    border-color: #DDF247 !important;
    color: #DDF247 !important;
}

/* Thank You */
.thank-you-container {
    text-align: center;
    padding: 60px 0;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: scaleIn .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0
    }

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

.thank-you-container h2 {
    margin-bottom: 16px;
}

/* Month tabs */
.booking-month-tabs {
    flex-wrap: nowrap;
}

.flat-pages-title-home7 {
    margin-top: 0px;
}

.flat-pages-title-home7::after {
    background: none
}

/* Responsive */
@media (max-width:767px) {
    .booking-stepper-bar {
        top: 57px;
    }

    .booking-stepper {
        gap: 16px;
        padding: 10px 0;
    }

    .stepper-track {
        width: 160px;
        margin-left: -80px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .ticket-selection-grid {
        grid-template-columns: 1fr;
    }

    .summary-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .summary-bar-total {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        padding-top: 6px;
        border-top: 1px solid rgba(0, 0, 0, .2);
    }

    .bottom-bar-actions {
        width: 100%;
    }

    .bottom-bar-actions .tf-button {
        flex: 1;
    }

    .booking-content-area {
        padding-top: 25px;
        padding-bottom: 150px;
    }

    header.is-fixed.is-small~.tf-section-2 .booking-stepper-bar {
        top: 86px !important;
    }

    .booking-date-card .author {
        padding: 5px;
    }

    .booking-date-card h5 {
        padding: 0px 5px;
    }

    .flat-pages-title-home4 {
        padding: 20px 0 60px 0;
    }

    .flat-pages-title-home4 .content h1 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .flat-button {
        flex-wrap: nowrap;
        gap: 10px;
    }

    #price .flat-button {
        flex-wrap: wrap;
    }

    .tf-button.style-1 {
        flex-shrink: initial;
    }

    .flat-pages-title-home4 .content p {
        margin-bottom: 20px;
    }

    .flat-pages-title-home4 .content {
        padding-bottom: 20px;
    }
}

/* Targeting most mobile phones (Portrait) */
@media only screen and (max-width: 480px) {
    #page.home-1 .flat-pages-title {
        padding-top: 0px;
    }

    #page.home-1 .flat-pages-title .pages-title h1 {
        font-size: 25px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    #page.home-1 .flat-pages-title .pages-title .flat-button {
        flex-wrap: nowrap;
    }

    #page.home-1 .flat-pages-title .pages-title .flat-button a {
        flex-shrink: 1;
        margin: 5px;
    }

    .home-1 .flat-pages-title .content {
        padding-bottom: 10px;
    }
}

/* Mobile header extras */
.mobile-header-extras {
    display: none;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.mobile-header-extras .tf-button {
    padding: 6px 12px;
    font-size: 12px;
    height: auto;
    line-height: 1.2;
    width: auto;
}

.mobile-lang-selector {
    position: relative;
    cursor: pointer;
}

.mobile-lang-selector .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.mobile-lang-selector .lang-dropdown a {
    padding: 8px 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-lang-selector .lang-dropdown a:last-child {
    border-bottom: none;
}

.mobile-lang-selector .lang-dropdown a.current {
    color: #ffd700;
}

/* Real purchase notification styling */
.real-purchase-toast {
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    width: auto !important;
    max-width: fit-content !important;
    padding-right: 15px !important;
}

.real-purchase-toast .swal2-icon {
    margin: 0 10px 0 0 !important;
    align-self: center !important;
}

.real-purchase-toast .swal2-html-container {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
}

@media (max-width: 991px) {
    .mobile-header-extras {
        display: flex;
        margin-right: 40px;
    }

    .flat-wallet {
        display: none !important;
    }

    #header_main {
        margin: 10px 0px;
    }

    .counter__body-1>div {
        width: 50% !important;
    }

    .counter__body-1 .space {
        display: none !important;
    }

    /* Real purchase notification styling */
    .real-purchase-toast {
        display: flex !important;
        align-items: center !important;
        font-size: 12px !important;
        width: auto !important;
        max-width: fit-content !important;
        padding-right: 15px !important;
    }

    .real-purchase-toast .swal2-icon {
        margin: 0 8px 0 0 !important;
        align-self: center !important;
    }

    .real-purchase-toast .swal2-html-container {
        font-size: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-self: center !important;
    }

}

/* Boat Animation */
@keyframes waving {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-13px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.navigating-boat {
    animation: waving 4s ease-in-out infinite;
    transform-origin: left center;
}

#logo-footer svg {
    max-height: 130px;
}

.page-title.about-us .content h1 {
    max-width: 100%;
}

.page-title.about-us {
    padding-top: 60px;
}

.old-price {
    color: red;
    text-decoration: line-through;
}

.sale-badge {
    background-color: #DDF247;
    color: #161616;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: bold;
    text-transform: uppercase;
}

/* Hide back to top button on mobile */
@media (max-width: 767px) {
    .progress-wrap {
        display: none !important;
    }
}

/* Fix Cumulative Layout Shift (CLS) for the background grid decoration on page load */
.widget-bg-line .bg-grid-line.y.bottom {
    top: 50px !important;
    bottom: auto !important;
    height: 90vh !important;
}