:root {
    --radius: 28px;
    --shadow: 0 24px 80px rgba(15, 23, 42, .12);
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, .08);
    --shadow-strong: 0 32px 100px rgba(15, 23, 42, .18)
}

:root[data-theme="light"] {
    --bg: #eef4f8;
    --bg2: #f8fbfd;
    --surface: #fff;
    --surface-2: #f5f9fc;
    --surface-3: #eef5f8;
    --line: rgba(15, 23, 42, .08);
    --line-strong: rgba(15, 23, 42, .12);
    --text: #102033;
    --muted: #5d7086;
    --accent: #12b3a2;
    --accent2: #2d8cff;
    --accent-dark: #0f5c81;
    --badge-bg: rgba(18, 179, 162, .08);
    --badge-border: rgba(18, 179, 162, .18);
    --header-bg: rgba(255, 255, 255, .6);
    --utility-bg: rgba(15, 92, 129, .06);
    --hero-grad-1: rgba(45, 140, 255, .14);
    --hero-grad-2: rgba(18, 179, 162, .12);
    --input-bg: #fff
}

:root[data-theme="dark"] {
    --bg: #07111b;
    --bg2: #0b1a29;
    --surface: rgba(255, 255, 255, .08);
    --surface-2: rgba(255, 255, 255, .05);
    --surface-3: rgba(255, 255, 255, .04);
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .15);
    --text: #eff8ff;
    --muted: #93a6b7;
    --accent: #2dd4bf;
    --accent2: #38bdf8;
    --accent-dark: #58d0ff;
    --badge-bg: rgba(45, 212, 191, .12);
    --badge-border: rgba(45, 212, 191, .25);
    --header-bg: rgba(7, 17, 27, .6);
    --utility-bg: rgba(255, 255, 255, .04);
    --hero-grad-1: rgba(45, 212, 191, .12);
    --hero-grad-2: rgba(56, 189, 248, .10);
    --input-bg: rgba(255, 255, 255, .06)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body.theme-body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, var(--hero-grad-1), transparent 32%), radial-gradient(circle at left center, var(--hero-grad-2), transparent 24%), linear-gradient(180deg, var(--bg), var(--bg2) 45%, var(--bg) 100%);
    color: var(--text);
    min-height: 100vh
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.text-soft {
    color: var(--muted) !important
}

.site-header .navbar {
	background: var(--header-bg);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.header-utility-bar {
    background: var(--utility-bg);
    border-bottom: 1px solid var(--line);
    padding: 9px 0;
	backdrop-filter: blur(16px);
}

.utility-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600
}

.navbar-brand {
    color: var(--text)
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(18, 179, 162, .18), rgba(45, 140, 255, .14));
    color: var(--text);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line)
}

.brand-title {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text)
}

.brand-subtitle {
    font-size: .72rem;
    color: var(--muted)
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 700;
    opacity: .88;
    padding: .9rem 10px !important;
    border-radius: 999px;
}

.navbar-nav .nav-link:hover {
    opacity: 1;
    background: var(--surface-3)
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow-soft)
}

.theme-toggle .theme-icon-dark {
    display: none
}

:root[data-theme="dark"] .theme-toggle .theme-icon-light {
    display: none
}

:root[data-theme="dark"] .theme-toggle .theme-icon-dark {
    display: inline-block
}

.nav-item-mega {
    position: relative
}

.mega-menu {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(860px, 90vw);
    padding: 18px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .22s ease
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.mega-link {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.mega-link i {
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-top: 4px
}

.mega-link strong {
    display: block
}

.mega-link small {
    display: block;
    color: var(--muted)
}

.btn {
    border-radius: 999px;
    font-weight: 700
}

.btn-glow {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    box-shadow: 0 16px 34px rgba(18, 179, 162, .24)
}

.btn-ghost-light,
.btn-outline-light {
    border: 1px solid var(--line-strong) !important;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(255, 255, 255, .12) !important;
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, .18);
}
.hero-slide-content .btn-ghost-light {
    color: #f9f9f9 !important;
}
.hero {
    position: relative;
    padding: 34px 0 84px
}

.hero-portal {
    padding-top: 0px
}

.hero-card,
.glass-card,
.portal-feature-card,
.mini-portal-card,
.editorial-main-panel,
.hero-slider-shell,
.sticky-booking-bar {
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    border-radius: 0px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px)
}

.hero-card {
    padding: 26px
}

.hero-slider-shell {
    padding: 0px;
    overflow: hidden
}

.hero-slide-card {
    min-height: 560px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 17, 26, .84) 0%, rgba(5, 17, 26, .48) 58%, rgba(5, 17, 26, .20) 100%)
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 38px;
    max-width: 760px;
    color: #fff;
    min-height: 665px;
}

.hero-slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: .94;
    font-weight: 900;
    letter-spacing: -.05em;
    color: #fff;
    margin: 16px 0 18px
}

.hero-slide-content .lead {
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    font-size: 1.06rem
}

.hero-slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-slide-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 700
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--badge-border);
    color: var(--accent);
    background: var(--badge-bg);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .88rem;
    font-weight: 700
}

.hero-slide-content .hero-badge {
	border-color: rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.portal-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.metric-item {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.metric-item .value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text)
}

.metric-item .label {
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700
}

.forecast-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    gap: 16px
}

.forecast-score:last-child {
    border-bottom: 0
}

.score-pill {
    min-width: 72px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    background: var(--badge-bg);
    color: var(--accent-dark);
    border: 1px solid var(--badge-border)
}

.portal-alert-stack {
    display: grid;
    gap: 12px
}

.portal-alert-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--surface-3)
}

.portal-search-ribbon {
    margin-top: 22px;
    padding: 16px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: repeat(4, 1fr) 220px;
    gap: 14px;
    align-items: center
}

.portal-search-item,
.portal-search-action {
    min-height: 82px;
    padding: 16px 18px;
    border-radius: 22px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.search-label {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 800
}

.search-value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 800;
    margin-top: 6px
}

.section {
    padding: 80px 0
}

.section-heading {
    margin-bottom: 28px
}

.kicker {
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 800
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.04em
}

.portal-feature-card {
    padding: 26px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease
}

.portal-feature-card:hover,
.card-boat:hover,
.card-captain:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong)
}

.icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    color: var(--accent)
}

.icon-chip.xl {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 1.15rem
}

.portal-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: 24px;
    align-items: stretch
}

.editorial-main-panel {
    padding: 34px
}

.editorial-side-stack {
    display: grid;
    gap: 18px
}

.mini-portal-card {
    padding: 22px
}

.mini-portal-card.accent {
    background: linear-gradient(135deg, rgba(18, 179, 162, .1), rgba(45, 140, 255, .12))
}

.portal-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.portal-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    font-weight: 700
}

.card-boat,
.card-captain {
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease
}

.card-cover {
    height: 240px;
    background: linear-gradient(135deg, #d9f3ff, #ecf7fb);
    position: relative;
    overflow: hidden
}

.card-cover:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .24));
    pointer-events: none
}

.card-cover img,
.detail-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card-cover .fake-water,
.detail-gallery .item .fake-water {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(18, 179, 162, .20), transparent 18%), radial-gradient(circle at 80% 20%, rgba(45, 140, 255, .20), transparent 20%), linear-gradient(180deg, #77caef, #dff6ff)
}

.card-bodyx {
    padding: 22px
}

.soft-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: .82rem;
    font-weight: 700
}

.soft-badge.dark {
    background: rgba(5, 15, 25, .56);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.card-floating-badges {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

.feature-rate,
.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--badge-bg);
    color: var(--accent-dark);
    border: 1px solid var(--badge-border);
    font-weight: 800
}

.boat-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.boat-spec-grid>div {
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    font-weight: 700;
    color: var(--text);
    display: flex;
    gap: 10px;
    align-items: center
}

.boat-spec-grid.compact>div {
    padding: 12px 14px;
    font-size: .95rem
}

.detail-gallery .item {
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    position: relative
}

.sticky-booking-shell {
    position: sticky;
    top: 120px
}

.sticky-booking-card .form-control,
.sticky-booking-card .form-select {
    min-height: 48px;
    border-radius: 16px;
    background: var(--input-bg);
    border: 1px solid var(--line)
}

.sticky-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.booking-trust-list {
    display: grid;
    gap: 10px
}

.booking-trust-list>div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-weight: 700
}

.booking-trust-list i {
    color: var(--accent)
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

.review-card {
    padding: 20px;
    border-radius: 22px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.captain-avatar-shell {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 179, 162, .12), rgba(45, 140, 255, .12));
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: var(--accent-dark);
    border: 1px solid var(--line)
}

.site-footer {
    padding: 44px 0 24px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .22);
    margin-top: 30px
}

@media(min-width:768px) {
    .footer-top-panel {
        display: flex;
    }
}

.footer-top-panel {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(18, 179, 162, .08), rgba(45, 140, 255, .08));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    margin-bottom: 26px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 12px 0 14px
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--muted)
}

.footer-links a {
    color: var(--muted)
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: var(--input-bg);
    color: var(--text)
}

.form-label {
    color: var(--muted) !important;
    font-weight: 700
}

.owl-theme .owl-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    border: 1px solid var(--line) !important;
    background: var(--surface) !important;
    color: var(--text) !important;
    display: grid !important;
    place-items: center;
    font-size: 1rem !important;
    box-shadow: var(--shadow-soft)
}

.owl-theme .owl-dots {
    margin-top: 18px
}

.owl-theme .owl-dot span {
    background: rgba(255, 255, 255, .24) !important;
    border: 1px solid rgba(255, 255, 255, .2) !important
}

.hero-carousel .owl-nav {
    position: absolute;
    right: 24px;
    bottom: 24px;
    margin-top: 0
}

.hero-carousel .owl-dots {
    position: absolute;
    left: 24px;
    bottom: 26px;
    margin-top: 0
}

.sticky-booking-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(130%);
    z-index: 1040;
    width: min(1100px, calc(100% - 24px));
    padding: 14px 16px;
    transition: .28s ease
}

.sticky-booking-bar.visible {
    transform: translateX(-50%) translateY(0)
}

.sticky-booking-inner {
    display: grid;
    grid-template-columns: 1.2fr .9fr .7fr 220px;
    gap: 12px;
    align-items: center
}

.sticky-booking-cell {
    padding: 12px 14px;
    border-radius: 18px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.sticky-booking-cell label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 4px
}

.sticky-booking-cell strong {
    font-size: 1rem
}

html[data-theme='light'] .kicker {
    color: #009aa5
}

html[data-theme='light'] .navbar-brand {
    color: #000000
}

html[data-theme='light'] .brand-mark {
    color: #0f5c81
}

html[data-theme='light'] .icon-chip {
    color: #0f5c81
}

html[data-theme='light'] .score-pill {
    color: #0f5c81
}

@media(max-width:1199px) {
    .portal-search-ribbon {
        grid-template-columns: repeat(2, 1fr)
    }

    .portal-search-action {
        grid-column: 1 / -1
    }

    .hero-slide-card {
        min-height: 520px
    }

    .sticky-booking-shell {
        position: static
    }

    .sticky-booking-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:991px) {

    .portal-editorial-grid,
    .footer-grid,
    .portal-check-grid {
        grid-template-columns: 1fr
    }

    .header-utility-bar .container {
        justify-content: center
    }

    .mega-menu {
        position: static;
        transform: none;
        width: auto;
        margin-top: 12px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none
    }

    .nav-item-mega:hover .mega-menu {
        display: block
    }
}

@media(max-width:767px) {

    .portal-mini-grid,
    .portal-search-ribbon,
    .boat-spec-grid,
    .review-grid,
    .sticky-form-grid,
    .sticky-booking-inner,
    .mega-grid {
        grid-template-columns: 1fr
    }

    .hero-slide-card {
        min-height: 480px
    }

    .hero-slide-content {
        padding: 26px
    }

    .hero-slide-content h1 {
        font-size: 2.45rem
    }

    .theme-toggle-label,
    .header-utility-bar {
        display: none
    }
}


/* v17 polish */
.hero-portal {
    padding-top: 0
}

.hero-slider-shell {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none
}

.hero-slide-card {
    min-height: 78vh;
    border-radius: 0;
    position: relative
}

.hero-slide-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 17, 26, .72) 0%, rgba(5, 17, 26, .36) 48%, rgba(5, 17, 26, .22) 100%)
}

.hero-slide-overlay {
    background: radial-gradient(circle at 82% 18%, rgba(18, 179, 162, .20), transparent 18%), radial-gradient(circle at 16% 22%, rgba(45, 140, 255, .18), transparent 22%)
}

.hero-slide-content {
    padding: 110px 0 120px;
    max-width: 820px
}

.hero-proof-wrap {
    margin-top: -44px;
    position: relative;
    z-index: 4
}

.hero-proof-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .65);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow)
}

:root[data-theme='dark'] .hero-proof-bar {
    background: rgba(7, 17, 27, .78);
    border-color: rgba(255, 255, 255, .08)
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 20px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.hero-proof-item strong {
    display: block;
    font-size: .96rem
}

.hero-proof-item small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    margin-top: 3px
}

.hero-proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    color: var(--accent-dark)
}

.regulation-badge.danger {
    background: rgba(239, 68, 68, .10);
    border-color: rgba(239, 68, 68, .18)
}

.regulation-badge.warning {
    background: rgba(245, 158, 11, .10);
    border-color: rgba(245, 158, 11, .18)
}

.regulation-badge.info {
    background: rgba(45, 140, 255, .10);
    border-color: rgba(45, 140, 255, .18)
}

.regulation-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px
}

.booking-smart-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.booking-smart-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    font-weight: 800;
    box-shadow: var(--shadow-soft)
}

.booking-smart-chip span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--badge-bg);
    color: var(--accent-dark)
}

.booking-type-option {
    position: relative;
    transition: all .25s ease;
    cursor: pointer
}

.booking-type-option.active {
    border-color: rgba(45, 140, 255, .28);
    box-shadow: var(--shadow)
}

.booking-type-option input {
    transform: translateY(1px)
}

.booking-mode-intro {
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.booking-summary-card {
    overflow: hidden
}

.booking-summary-shell {
    display: grid;
    gap: 12px
}

.booking-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-3);
    border: 1px solid var(--line)
}

.booking-summary-line span {
    color: var(--muted);
    font-weight: 700
}

.booking-summary-line strong {
    max-width: 58%;
    text-align: right
}

.bait-card {
    transition: transform .2s ease, box-shadow .2s ease
}

.bait-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft)
}

@media(max-width:1199px) {
    .hero-proof-bar {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .hero-slide-card {
        min-height: 70vh
    }

    .hero-slide-content {
        padding: 96px 16px 110px
    }

    .hero-proof-wrap {
        margin-top: -24px
    }

    .hero-proof-bar {
        grid-template-columns: 1fr
    }

    .booking-smart-strip {
        display: grid;
        grid-template-columns: 1fr
    }

    .booking-summary-line {
        flex-direction: column
    }

    .booking-summary-line strong {
        max-width: 100%;
        text-align: left
    }
}

.map-box {
    width: 100%;
    height: 600px;
}

.hero-slide-card {
    transition: transform .6s ease;
}

.hero-slide-card:hover {
    transform: scale(1.01);
}

.hero-slide-overlay {
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .65) 0%,
            rgba(0, 0, 0, .35) 40%,
            rgba(0, 0, 0, .15) 100%);
}

@media(min-width:768px) {
    .footer-top-actions {
        min-width: 340px;
    }
}

.regulation-badge {
    display: inline-flex;
    white-space: nowrap;
}

.theme-toggle-label {
    display: none;
}

.cnamemname {
    min-height: 24px;
    font-weight: 700;
}

.boatShortDesc {
    min-height: 48px;
}

.boat-spec-grid2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.regulation-item {
    margin-bottom: 30px;
}

@media(max-width:768px) {
    .footer-top-actions {
        margin-top: 30px;
    }

    .btn-glow {
        padding: 12px 15px;
        font-size: 14px;
    }

    .site-footer {
        margin-top: 0px;
        padding: 0px 0 24px 0;
    }
}