﻿/* Pixel-guide inspired public redesign. Backend data and routes stay untouched. */
:root,
html.light-mode,
html[data-theme="light"],
body.light-mode,
body[data-theme="light"] {
    --guide-orange: #FB8E27;
    --guide-orange-hover: #E77718;
    --guide-orange-text: #B76716;
    --guide-orange-soft: #fff2e4;
    --guide-orange-mist: #fff8f1;
    --guide-navy: #021F41;
    --guide-ink: #14202b;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fff2e4;
    --primary: var(--guide-orange);
    --primary-hover: var(--guide-orange-hover);
    --primary-gradient: linear-gradient(135deg, #FB8E27 0%, #F79029 100%);
    --secondary: var(--guide-navy);
    --text-light: var(--guide-ink);
    --text-muted: #66717c;
    --border-color: rgba(2, 31, 65, 0.1);
    --border-light: rgba(2, 31, 65, 0.16);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 24px 70px rgba(2, 31, 65, 0.1);
    --shadow-glow: 0 14px 34px rgba(251, 142, 39, 0.28);
    --shadow-hover: 0 30px 80px rgba(2, 31, 65, 0.16);
}

html,
body,
html.light-mode body,
html[data-theme="light"] body,
body.light-mode,
body[data-theme="light"] {
    background: #ffffff;
    color: var(--text-light);
}

body::before {
    display: none;
}

.container {
    max-width: 1120px;
}

.top-bar,
html.light-mode .top-bar,
html[data-theme="light"] .top-bar,
body.light-mode .top-bar,
body[data-theme="light"] .top-bar {
    position: absolute;
    top: 92px;
    left: 50%;
    z-index: 45;
    display: block;
    width: min(820px, calc(100% - 32px));
    padding: 0;
    color: #14202b;
    background: transparent;
    border: 0;
    transform: translateX(-50%);
    pointer-events: none;
}

.top-bar-container {
    width: 100%;
    max-width: none;
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 44px rgba(2, 31, 65, 0.14);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.top-bar-contact,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-contact a,
.top-bar-social a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 999px;
    color: #14202b;
    font-weight: 800;
    white-space: nowrap;
}

.top-bar-contact a {
    padding: 0 10px;
    background: #fff2e4;
}

.top-bar-contact i {
    color: #B76716;
}

.top-bar-ticker {
    min-width: 0;
    height: 24px;
    color: #4f5964;
    font-weight: 800;
    text-align: center;
}

.ticker-item {
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-social {
    justify-content: flex-end;
}

.top-bar-social a {
    width: 34px;
    color: #14202b;
    background: #ffffff;
    border: 1px solid rgba(2, 31, 65, 0.08);
}

.top-bar-social a:hover,
.top-bar-contact a:hover,
a.ticker-item:hover {
    color: #B76716;
}

.inner-page .top-bar,
html.light-mode .inner-page .top-bar,
html[data-theme="light"] .inner-page .top-bar,
body.light-mode.inner-page .top-bar,
body[data-theme="light"].inner-page .top-bar {
    display: none;
}

.navbar,
.navbar.scrolled,
.navbar.solid {
    position: fixed;
    top: 20px;
    left: 50%;
    width: min(1120px, calc(100% - 32px));
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateX(-50%);
}

.inner-page .navbar,
.inner-page .navbar.solid {
    position: sticky;
    top: 14px;
    left: auto;
    width: min(1120px, calc(100% - 32px));
    margin: 14px auto 0;
    transform: none;
}

.nav-container {
    max-width: none;
    min-height: 58px;
    padding: 0 12px 0 18px;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(2, 31, 65, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img,
html.light-mode .logo img,
html[data-theme="light"] .logo img,
body.light-mode .logo img,
body[data-theme="light"] .logo img {
    height: 46px;
    max-width: 190px;
    object-fit: contain;
    transform-origin: center;
    animation: logoImageBreath 2.4s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
    transition: transform 0.25s ease, filter 0.25s ease;
    will-change: transform;
}

.logo:hover img,
.logo:focus-visible img {
    filter: drop-shadow(0 8px 14px rgba(2, 31, 65, 0.16));
    transform: translateY(-1px) scale(1.04);
}

@keyframes logoImageBreath {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    42% {
        transform: translateY(-4px) rotate(-1deg) scale(1.06);
    }

    72% {
        transform: translateY(1px) rotate(0.6deg) scale(0.99);
    }
}

/* Stable public theme layer. Keep this after the redesign rules so legacy light-mode
   overrides cannot leak into the current homepage. */
html:not(.dark-mode),
html.light-mode,
html[data-theme="light"] {
    --guide-ink: #000000;
    --text-light: #000000;
    --text-muted: #4f5964;
}

html.dark-mode,
html[data-theme="dark"],
body.dark-mode,
body[data-theme="dark"] {
    --bg-main: #07111f;
    --bg-card: #101826;
    --bg-card-hover: #142238;
    --guide-ink: #f8fafc;
    --guide-navy: #f8fafc;
    --text-light: #f8fafc;
    --text-muted: #b8c2cf;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-light: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.34);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.46);
}

html.dark-mode body,
html[data-theme="dark"] body,
body.dark-mode,
body[data-theme="dark"] {
    background: #07111f;
    color: var(--text-light);
}

.theme-toggle {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(2, 31, 65, 0.1);
    border-radius: 8px;
    background: #fff7ef;
    color: #000000;
    cursor: pointer;
}

.theme-toggle:hover {
    border-color: #FB8E27;
    color: #FB8E27;
}

html:not(.dark-mode) .hero[data-hero-root] .hero-text h1,
html.light-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
body.light-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="light"] .hero[data-hero-root] .hero-text h1,
html:not(.dark-mode) .home-stat strong,
html.light-mode .home-stat strong,
html[data-theme="light"] .home-stat strong {
    color: #000000 !important;
}

html:not(.dark-mode) .hero[data-hero-root] .hero-text p,
html.light-mode .hero[data-hero-root] .hero-text p,
html[data-theme="light"] .hero[data-hero-root] .hero-text p,
body.light-mode .hero[data-hero-root] .hero-text p,
body[data-theme="light"] .hero[data-hero-root] .hero-text p {
    color: #405064 !important;
}

html.dark-mode .top-bar,
html[data-theme="dark"] .top-bar {
    color: var(--text-light);
}

html.dark-mode .top-bar-container,
html[data-theme="dark"] .top-bar-container,
html.dark-mode .nav-container,
html[data-theme="dark"] .nav-container {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(9, 16, 28, 0.94);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
}

html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a,
html.dark-mode .nav-links a,
html[data-theme="dark"] .nav-links a,
html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .theme-toggle,
html[data-theme="dark"] .theme-toggle {
    color: var(--text-light);
}

html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a,
html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .theme-toggle,
html[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

html.dark-mode .top-bar-ticker,
html[data-theme="dark"] .top-bar-ticker,
html.dark-mode .hero[data-hero-root] .hero-text p,
html[data-theme="dark"] .hero[data-hero-root] .hero-text p,
body.dark-mode .hero[data-hero-root] .hero-text p,
body[data-theme="dark"] .hero[data-hero-root] .hero-text p {
    color: var(--text-muted) !important;
}

html.dark-mode .hero,
html[data-theme="dark"] .hero,
html.dark-mode .hero[data-hero-root],
html[data-theme="dark"] .hero[data-hero-root] {
    background: #07111f;
}

html.dark-mode .hero[data-hero-root]::before,
html[data-theme="dark"] .hero[data-hero-root]::before {
    background: radial-gradient(circle at 16% 20%, rgba(251, 142, 39, 0.18), transparent 28rem);
}

html.dark-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
body.dark-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
html.dark-mode .home-stat strong,
html[data-theme="dark"] .home-stat strong {
    color: #ffffff !important;
}

html.dark-mode .hero-kicker,
html[data-theme="dark"] .hero-kicker {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd2a5;
}

html.dark-mode .hero-bg,
html[data-theme="dark"] .hero-bg {
    border-color: rgba(255, 255, 255, 0.16);
    background: #101826;
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.46);
}

html.dark-mode .hero-float-card,
html[data-theme="dark"] .hero-float-card,
html.dark-mode .filter-tag,
html[data-theme="dark"] .filter-tag,
html.dark-mode .card,
html[data-theme="dark"] .card,
html.dark-mode .feature-item,
html[data-theme="dark"] .feature-item,
html.dark-mode .newsletter-box,
html[data-theme="dark"] .newsletter-box {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(16, 24, 38, 0.96);
    color: var(--text-light);
}

html.dark-mode .footer,
html[data-theme="dark"] .footer {
    border-color: rgba(255, 255, 255, 0.1);
    background: #07111f;
    color: var(--text-light);
}

.nav-links {
    flex: 1;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 20px);
    min-width: 0;
}

.nav-links a,
html.light-mode .nav-links a {
    color: #14202b;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
}

.nav-links a.active::after {
    bottom: -10px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FB8E27;
    transform: translateX(-50%);
}

.nav-actions {
    gap: 8px;
}

.lang-switch,
.menu-btn {
    border-color: rgba(2, 31, 65, 0.1);
    background: #fff7ef;
    color: #14202b;
}

.menu-btn {
    width: 38px;
    height: 38px;
}

.menu-btn:hover {
    border-color: #FB8E27;
    color: #14202b;
}

.lang-switch {
    min-height: 38px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.lang-switch option {
    background: #ffffff;
    color: #14202b;
}

.btn {
    min-height: 42px;
    border-radius: 999px;
    font-size: 0.86rem;
}

.btn-primary,
html.light-mode .scroll-top-btn {
    background: var(--guide-orange);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(251, 142, 39, 0.26);
}

.btn-primary:hover {
    background: var(--guide-orange-hover);
    box-shadow: 0 18px 36px rgba(251, 142, 39, 0.32);
    transform: translateY(-2px);
}

.btn-primary i {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.72rem;
}

.hero {
    position: relative;
    min-height: 690px;
    padding: 126px 0 50px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    top: 36px;
    right: -6%;
    width: min(58vw, 760px);
    height: min(38vw, 440px);
    z-index: -1;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='300 0 380 170'%3E%3Cpath fill='%23FB8E27' d='M400 8c14 1 50 33 66 51 22-2 64-14 88-7 9 3 13 7 13 12 0 11-45 18-83 24-11 2-24 6-31 14-8 10-26 42-42 54-8 6-15 2-13-8l18-58c-28 6-69 13-93 6-13-4-18-13-10-20 8-8 24 7 38 8 11 1 39-5 67-11-12-24-31-47-43-59-6-6-2-8 25-6z'/%3E%3C/svg%3E") center / contain no-repeat;
    filter: drop-shadow(0 32px 56px rgba(251, 142, 39, 0.24));
    opacity: 0.66;
    transform: rotate(-2deg);
    transform-origin: center;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 500px);
    gap: 64px;
    align-items: center;
    min-height: 465px;
    padding-top: 0;
}

.hero-text {
    max-width: 560px;
    min-height: 0;
    margin: 0;
    text-align: left;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 18px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #5a4b39;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-text h1,
html.light-mode .hero-text h1,
html[data-theme="light"] .hero-text h1,
body.light-mode .hero-text h1,
body[data-theme="light"] .hero-text h1 {
    max-width: 620px;
    min-height: 0;
    margin: 0 0 20px;
    color: #14202b !important;
    font-size: clamp(2.55rem, 4.8vw, 4.65rem);
    font-weight: 900;
    line-height: 0.94;
}

.hero-text p,
html.light-mode .hero-text p,
html[data-theme="light"] .hero-text p,
body.light-mode .hero-text p,
body[data-theme="light"] .hero-text p {
    max-width: 455px;
    margin-bottom: 22px;
    color: #4f5964 !important;
    font-size: 0.94rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 475px;
}

.hero-bg {
    position: absolute;
    inset: 0 0 34px 18px;
    z-index: 2;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: #fff2e4;
    box-shadow: 0 32px 70px rgba(2, 31, 65, 0.16);
}

.hero-full-bg.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.8s ease, transform 3.5s ease;
}

.hero-full-bg.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-overlay {
    display: none;
}

.hero-float-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 18px 45px rgba(2, 31, 65, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-float-card-price {
    top: 78px;
    left: 0;
    display: grid;
    gap: 5px;
    min-width: 150px;
    padding: 13px 14px;
}

.hero-float-card-price span {
    color: #6f7680;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-float-card-price strong {
    color: #14202b;
    font-size: 1.15rem;
    line-height: 1;
}

.hero-float-card-trust {
    right: 0;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 265px;
    min-height: 32px;
    padding: 0 12px;
    color: #4f5964;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-float-card-trust i {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FB8E27;
    color: #ffffff;
    font-size: 0.62rem;
}

.hero-side {
    position: absolute;
    right: 18px;
    top: 26px;
    z-index: 5;
}

.slider-arrows {
    flex-direction: row;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--guide-navy);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(2, 31, 65, 0.25);
}

.slider-arrow:hover {
    background: #FB8E27;
    color: #ffffff;
    transform: translateX(0) scale(1.05);
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 6px 20px 74px;
}

.home-stat {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.home-stat strong {
    color: #14202b;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    font-weight: 950;
    line-height: 0.9;
}

.home-stat span {
    max-width: 230px;
    color: #66717c;
    font-size: 0.86rem;
}

.destinations {
    position: relative;
    max-width: 1120px;
    margin: 0 auto 92px;
    padding: 34px 20px 82px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.destinations::before {
    display: none;
}

.destinations-header,
.destinations .filter-tags,
.destinations .cards-grid {
    position: relative;
    z-index: 1;
}

.destinations-header {
    justify-content: center;
    margin-bottom: 18px;
    text-align: center;
}

.destinations-header > div {
    max-width: 760px;
}

.destinations .section-label {
    color: #B76716;
    text-transform: none;
    font-size: 0.9rem;
}

.destinations-header h2 {
    margin-bottom: 10px;
    color: #14202b;
    font-size: clamp(2rem, 3.9vw, 3.45rem);
    line-height: 0.98;
}

.destinations-header p {
    color: #66717c;
}

.program-filter-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin: 0 auto 28px;
    padding: 14px;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 58px rgba(2, 31, 65, 0.1);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.program-filter-panel-copy {
    display: grid;
    gap: 4px;
    padding: 0 4px 0 6px;
}

.program-filter-panel-copy span {
    color: #B76716;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.program-filter-panel-copy strong {
    color: #14202b;
    font-size: 1.05rem;
    line-height: 1.15;
}

.program-filter-panel-copy strong span {
    color: inherit;
    font-size: inherit;
    text-transform: none;
}

.filter-tags {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(148px, 1fr);
    justify-content: start;
    gap: 10px;
    margin: 0;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 31, 65, 0.22) transparent;
}

.filter-tags::-webkit-scrollbar {
    height: 6px;
}

.filter-tags::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(2, 31, 65, 0.22);
}

.filter-tag,
html.light-mode .filter-tag {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 9px 12px;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #14202b;
    font-weight: 800;
    text-align: left;
    box-shadow: 0 12px 26px rgba(2, 31, 65, 0.06);
}

.filter-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fff2e4;
    color: #B76716;
    transition: background 0.2s ease, color 0.2s ease;
}

.filter-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.filter-label {
    overflow: hidden;
    color: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 24px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #fff7ef;
    color: #6f624f;
    font-size: 0.76rem;
    font-weight: 900;
}

.filter-tag:hover,
.filter-tag.active,
html.light-mode .filter-tag:hover,
html.light-mode .filter-tag.active {
    border-color: transparent;
    background: var(--guide-navy);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(2, 31, 65, 0.18);
    transform: translateY(-1px);
}

.filter-tag:hover .filter-icon,
.filter-tag.active .filter-icon {
    background: #FB8E27;
    color: #ffffff;
}

.filter-tag:hover .filter-count,
.filter-tag.active .filter-count {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.program-load-more-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.program-load-more[hidden] {
    display: none;
}

.program-load-more {
    min-width: 210px;
}

.card,
html.light-mode .card {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 18px;
    background: #ffffff;
    color: #14202b;
    box-shadow: 0 18px 42px rgba(2, 31, 65, 0.11);
    isolation: isolate;
}

.card:hover,
.card:focus-visible {
    border-color: transparent;
    box-shadow: 0 30px 72px rgba(2, 31, 65, 0.18);
    transform: translateY(-6px);
}

.card:focus-visible {
    outline: 3px solid rgba(251, 142, 39, 0.4);
    outline-offset: 4px;
}

.card-img-container {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 178px;
    overflow: hidden;
    background: #fff2e4;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.card:hover .card-img,
.card:focus-visible .card-img {
    filter: saturate(1.12) contrast(1.04);
    transform: scale(1.06);
}

.card-image-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(180deg, rgba(2, 31, 65, 0), rgba(2, 31, 65, 0.7));
    pointer-events: none;
}

.card-badge,
html.light-mode .card-badge {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    border-radius: 999px;
    background: rgba(251, 142, 39, 0.96);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(2, 31, 65, 0.12);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-location {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    max-width: calc(100% - 24px);
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(2, 31, 65, 0.7);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.card-location span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-content {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 11px;
    padding: 18px;
}

.card-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.card-title,
.card-price,
html.light-mode .card-price,
.time-box .num {
    color: #14202b !important;
}

.card-title {
    display: -webkit-box;
    min-height: 2.56em;
    margin: 0;
    overflow: hidden;
    font-size: 1.18rem;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-duration,
html.light-mode .card-duration {
    width: fit-content;
    min-height: 28px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff2e4;
    color: #B76716;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
}

.card-desc,
.card-price-label,
.card-old-price {
    color: #66717c;
}

.card-desc {
    height: auto;
    min-height: 4.35em;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 4px;
    padding-top: 15px;
    border-top-color: rgba(2, 31, 65, 0.08);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.card-price {
    font-size: 1.24rem;
    font-weight: 950;
    line-height: 1;
}

.card-old-price {
    font-size: 0.86rem;
}

.card-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--guide-orange);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.card-cta i {
    color: #ffffff;
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.card:hover .card-cta i,
.card:focus-visible .card-cta i {
    transform: translateX(3px);
}

.icon-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--guide-navy);
}

.icon-btn i {
    color: #FB8E27 !important;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 92px;
    padding: 0 20px;
    border: 0;
    background: transparent;
}

.feature-divider {
    display: none;
}

.feature-item,
html.light-mode .feature-item {
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    padding: 26px;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(2, 31, 65, 0.1);
}

.icon-box,
.contact-icon,
.hotel-card-icon {
    border-radius: 50%;
    background: var(--guide-orange);
    color: #ffffff;
}

.feature-item h4,
.about-value h3,
.contact-info-card h2,
.hotel-card-body h2,
.excursion-card-body h3,
.section-header h2,
.newsletter-text h3,
.testimonial-meta strong,
.footer-col h4 {
    color: #14202b;
}

.feature-item p,
.about-copy p,
.about-mission-grid p,
.about-value p,
.contact-copy p,
.contact-info-card p,
.testimonial-comment,
.newsletter-text p,
.footer-col a,
.brand-col p,
.contact-col li {
    color: #66717c;
}

.promo,
.testimonials,
.newsletter {
    margin-bottom: 92px;
}

.promo-box,
html.light-mode .promo-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 22px;
    background: #ffffff !important;
    box-shadow: 0 28px 70px rgba(2, 31, 65, 0.12);
}

.promo-label,
html.light-mode .promo-label,
.section-label,
html.light-mode .section-label,
.page-kicker,
html.light-mode .page-kicker {
    color: #B76716;
    font-weight: 900;
}

.promo-title {
    color: #14202b;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.98;
}

.promo-title strong,
html.light-mode .promo-title strong {
    display: inline-block;
    color: #B76716;
}

.promo-desc {
    color: #66717c;
}

.time-box,
html.light-mode .time-box {
    border-color: rgba(2, 31, 65, 0.08);
    background: #fff2e4;
}

.time-box .text {
    color: #71675d;
}

.promo-image {
    min-height: 390px;
    -webkit-clip-path: none;
    clip-path: none;
}

.promo-image img {
    filter: saturate(1.05);
}

.testimonial-grid {
    gap: 18px;
}

.testimonial-card,
html.light-mode .testimonial-card,
.newsletter-box,
html.light-mode .newsletter-box,
.contact-info-card,
html.light-mode .contact-info-card,
.contact-form,
html.light-mode .contact-form,
.about-media,
html.light-mode .about-media,
.about-value,
html.light-mode .about-value,
.review-public-panel,
html.light-mode .review-public-panel,
.filters-sidebar,
html.light-mode .filters-sidebar,
.hotel-card,
html.light-mode .hotel-card,
.excursion-card,
html.light-mode .excursion-card,
.faq-item,
html.light-mode .faq-item {
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(2, 31, 65, 0.1);
}

.testimonial-stars,
.rating-stars {
    color: #14202b;
}

.testimonial-meta {
    border-top-color: rgba(2, 31, 65, 0.08);
}

.testimonial-meta a {
    color: #B76716;
}

.newsletter-box,
html.light-mode .newsletter-box {
    gap: 22px;
    background:
        linear-gradient(135deg, rgba(251, 142, 39, 0.18), transparent 52%),
        #ffffff;
}

.newsletter-icon {
    color: #14202b;
}

.newsletter-form .input-wrapper,
html.light-mode .newsletter-form .input-wrapper {
    overflow: hidden;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 999px;
    background: #fff8f1;
    box-shadow: none;
}

.newsletter-form input,
html[data-theme="light"] .newsletter-form input,
body.light-mode .newsletter-form input,
body[data-theme="light"] .newsletter-form input {
    color: #14202b;
}

.footer,
html.light-mode .footer {
    border-top: 1px solid rgba(2, 31, 65, 0.08);
    background: #ffffff;
}

.footer .logo img {
    height: 42px;
}

.footer-col h4,
html.light-mode .footer-col h4 {
    color: #141414;
}

.footer-col a,
.brand-col p,
.contact-col li,
.footer-bottom,
html.light-mode .footer-bottom {
    color: #66717c;
}

.social-links a,
html.light-mode .social-links a {
    border-color: rgba(2, 31, 65, 0.1);
    background: #fff8f1;
    color: #141414;
}

.social-links a:hover,
html.light-mode .social-links a:hover {
    border-color: #FB8E27;
    background: #FB8E27;
    color: #ffffff;
}

.contact-col i,
.footer-col a:hover,
html.light-mode .footer-col a:hover {
    color: #FB8E27;
}

.footer-newsletter-col p,
html.light-mode .footer-newsletter-col p {
    color: #66717c;
}

.footer .footer-newsletter-form .input-wrapper,
html.light-mode .footer .footer-newsletter-form .input-wrapper,
body.light-mode .footer .footer-newsletter-form .input-wrapper,
body[data-theme="light"] .footer .footer-newsletter-form .input-wrapper {
    border-color: rgba(2, 31, 65, 0.1);
    background: #fff8f1;
    box-shadow: none;
}

.footer .footer-newsletter-form .input-wrapper:focus-within,
html.light-mode .footer .footer-newsletter-form .input-wrapper:focus-within,
body.light-mode .footer .footer-newsletter-form .input-wrapper:focus-within,
body[data-theme="light"] .footer .footer-newsletter-form .input-wrapper:focus-within {
    border-color: rgba(251, 142, 39, 0.8);
    box-shadow: 0 0 0 3px rgba(251, 142, 39, 0.14);
}

.footer .footer-newsletter-form input,
html.light-mode .footer .footer-newsletter-form input,
body.light-mode .footer .footer-newsletter-form input,
body[data-theme="light"] .footer .footer-newsletter-form input {
    color: #141414;
}

.footer .footer-newsletter-form input::placeholder,
html.light-mode .footer .footer-newsletter-form input::placeholder,
body.light-mode .footer .footer-newsletter-form input::placeholder,
body[data-theme="light"] .footer .footer-newsletter-form input::placeholder {
    color: #8a929b;
}

.footer .footer-newsletter-form .btn,
html.light-mode .footer .footer-newsletter-form .btn {
    background: #FB8E27;
    color: #ffffff;
}

.footer .footer-newsletter-form .btn:hover,
html.light-mode .footer .footer-newsletter-form .btn:hover {
    background: #E77718;
    color: #ffffff;
}

.footer .footer-newsletter-form .btn i,
html.light-mode .footer .footer-newsletter-form .btn i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.footer-bottom,
html.light-mode .footer-bottom {
    border-top-color: rgba(2, 31, 65, 0.08);
}

.inner-page {
    background: #ffffff;
}

.page-header {
    max-width: min(1180px, calc(100% - 28px));
    margin: 24px auto 0;
    padding: 86px 20px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(2, 31, 65, 0.12);
}

.page-header h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 950;
    line-height: 0.95;
}

.page-header p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
}

.contact-page,
.about-page,
.custom-page-content,
.review-public,
.programs-layout,
.details-layout,
.photo-gallery-page,
.faq-page {
    padding-top: 60px;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.filter-select,
.review-comment input,
.review-comment textarea,
.booking-form-modal input,
html.light-mode .contact-field input,
html.light-mode .contact-field select,
html.light-mode .contact-field textarea,
html.light-mode .filter-select {
    border-color: rgba(2, 31, 65, 0.1);
    border-radius: 10px;
    background: #fff8f1;
    color: #14202b;
}

.contact-field span,
.review-stars legend,
.review-kpi legend,
.review-program-summary strong,
.faq-question,
html.light-mode .faq-item summary {
    color: #14202b;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.review-comment input:focus,
.review-comment textarea:focus {
    border-color: #FB8E27;
    box-shadow: 0 0 0 3px rgba(251, 142, 39, 0.18);
}

.about-mission-band,
html.light-mode .about-mission-band {
    border-color: rgba(2, 31, 65, 0.08);
    background: #fff2e4;
}

.photo-gallery-toolbar {
    border-bottom-color: rgba(2, 31, 65, 0.1);
}

.photo-gallery-toolbar strong,
.section-heading h2,
.excursion-detail-body h2,
html.light-mode .section-heading h2 {
    color: #14202b;
}

.photo-gallery-toolbar span,
.faq-answer,
.custom-page-content article,
.details-desc {
    color: #66717c;
}

.photo-gallery-open-first,
html.light-mode .photo-gallery-open-first {
    border-color: rgba(2, 31, 65, 0.1);
    background: #ffffff;
    color: #14202b;
}

.photo-gallery-open-first:hover {
    border-color: #FB8E27;
    background: #fff2e4;
}

.modal-content,
html.light-mode .modal-content,
.booking-card,
html.light-mode .booking-card {
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 16px;
    background: #ffffff;
    color: #14202b;
}

.whatsapp-btn,
.floating-whatsapp {
    background: #14202b;
    color: #FB8E27;
}

.scroll-top-btn {
    background: var(--guide-orange);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(251, 142, 39, 0.26);
}

@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .top-bar,
    html.light-mode .top-bar,
    html[data-theme="light"] .top-bar,
    body.light-mode .top-bar,
    body[data-theme="light"] .top-bar {
        top: 76px;
        width: calc(100% - 24px);
    }

    .top-bar-container {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 12px;
    }

    .top-bar-ticker {
        grid-column: 1 / -1;
        order: 1;
    }

    .top-bar-contact {
        order: 2;
    }

    .top-bar-social {
        order: 3;
    }

    .navbar,
    .navbar.scrolled,
    .navbar.solid {
        top: 10px;
        width: calc(100% - 24px);
        background: transparent;
    }

    .nav-container {
        min-height: 56px;
    }

    .nav-links {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 10px;
        padding: 14px 18px;
        border: 1px solid rgba(2, 31, 65, 0.08);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 45px rgba(2, 31, 65, 0.14);
    }

    .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 142px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        text-align: left;
    }

    .hero-text {
        width: 100%;
        text-align: left;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 9vw, 3.35rem) !important;
    }

    .hero-visual {
        min-height: 430px;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-bg {
        inset: 8px 8px 38px 8px;
    }

    .hero-float-card-price {
        left: 0;
        top: 62px;
    }

    .home-stats,
    .features,
    .testimonial-grid,
    .about-mission-grid,
    .about-values,
    .contact-info-panel,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .home-stats {
        padding-bottom: 54px;
    }

    .destinations {
        padding: 54px 18px 58px;
    }

    .program-filter-panel {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .program-filter-panel-copy {
        grid-template-columns: auto 1fr;
        align-items: baseline;
        justify-content: space-between;
    }

    .promo-box {
        grid-template-columns: 1fr;
    }

    .promo-image {
        min-height: 260px;
    }

    .newsletter-box {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo img,
    html.light-mode .logo img {
        height: 39px;
        max-width: 150px;
    }

    .lang-switch {
        display: none;
    }

    .top-bar,
    html.light-mode .top-bar,
    html[data-theme="light"] .top-bar,
    body.light-mode .top-bar,
    body[data-theme="light"] .top-bar {
        top: 72px;
        width: calc(100% - 20px);
    }

    .top-bar-container {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 9px 10px;
        border-radius: 14px;
    }

    .top-bar-contact {
        justify-content: center;
    }

    .top-bar-contact a {
        min-height: 30px;
        font-size: 0.78rem;
    }

    .top-bar-contact a:nth-child(2),
    .top-bar-social {
        display: none;
    }

    .top-bar-ticker {
        height: 22px;
        font-size: 0.78rem;
    }

    .hero {
        padding-top: 146px;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-float-card-price {
        min-width: 132px;
    }

    .hero-float-card-trust {
        left: 24px;
        right: 10px;
        max-width: none;
    }

    .home-stats,
    .features,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .home-stat strong {
        font-size: 3rem;
    }

    .destinations {
        max-width: 100%;
        border-radius: 18px;
    }

    .destinations-header h2 {
        font-size: 2.1rem;
    }

    .filter-tags {
        grid-auto-columns: minmax(178px, 78%);
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .newsletter-form .input-wrapper {
        border-radius: 12px;
    }

    .page-header {
        max-width: calc(100% - 16px);
        padding: 64px 16px;
        border-radius: 18px;
    }
}

/* Configurable full-bleed homepage hero (managed from the back office) */
.hero[data-hero-root] {
    --hero-content-width: 560px;
    --hero-title-size: 52px;
    --hero-title-size-mobile: 32px;
    --hero-subtitle-size: 18px;
    --hero-subtitle-size-mobile: 15px;
    --hero-kicker-size: 14px;
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #d0d5dd;
    --hero-kicker-color: #ffffff;
    --hero-media-x: 50%;
    --hero-media-y: 50%;
    --hero-overlay-strong: rgba(11, 17, 32, 0.72);
    --hero-overlay-soft: rgba(11, 17, 32, 0.18);
    min-height: max(720px, 100svh);
    margin-top: 0;
    padding: 116px 0 56px;
    background: #0b1120;
}

body.home-page {
    padding-top: 0;
}

body.home-page .navbar {
    z-index: 1000;
}

body.home-page .navbar:not(.scrolled) .nav-container {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 46px rgba(3, 12, 24, 0.22);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
}

.hero[data-hero-root]::before {
    display: none;
}

.hero[data-hero-root] [hidden] {
    display: none !important;
}

.hero[data-hero-root] .hero-content {
    position: static;
    display: flex;
    width: 100%;
    min-height: 548px;
    padding-top: 0;
    gap: 0;
}

.hero[data-content-horizontal="left"] .hero-content { justify-content: flex-start; }
.hero[data-content-horizontal="center"] .hero-content { justify-content: center; }
.hero[data-content-horizontal="right"] .hero-content { justify-content: flex-end; }
.hero[data-content-vertical="top"] .hero-content { align-items: flex-start; }
.hero[data-content-vertical="center"] .hero-content { align-items: center; }
.hero[data-content-vertical="bottom"] .hero-content { align-items: flex-end; }

.hero[data-hero-root] .hero-text {
    position: relative;
    z-index: 7;
    display: flex;
    flex-direction: column;
    width: min(100%, var(--hero-content-width));
    max-width: var(--hero-content-width);
    min-height: 0;
    margin: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero[data-text-align="left"] .hero-text { align-items: flex-start; text-align: left; }
.hero[data-text-align="center"] .hero-text { align-items: center; text-align: center; }
.hero[data-text-align="right"] .hero-text { align-items: flex-end; text-align: right; }

.hero[data-hero-root].is-changing .hero-text {
    opacity: 0;
    transform: translateY(10px);
}

.hero[data-hero-root] .hero-kicker {
    min-height: 30px;
    margin-bottom: 18px;
    padding: 5px 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.13);
    color: var(--hero-kicker-color);
    font-size: var(--hero-kicker-size);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero[data-hero-root] .hero-text h1,
html.light-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
body.light-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
    width: 100%;
    max-width: none;
    margin: 0 0 18px;
    color: var(--hero-title-color) !important;
    font-size: var(--hero-title-size) !important;
    font-weight: 900;
    line-height: 1.03;
    text-wrap: balance;
}

.hero[data-hero-root] .hero-text p,
html.light-mode .hero[data-hero-root] .hero-text p,
html[data-theme="light"] .hero[data-hero-root] .hero-text p,
body.light-mode .hero[data-hero-root] .hero-text p,
body[data-theme="light"] .hero[data-hero-root] .hero-text p {
    width: 100%;
    max-width: none;
    margin: 0 0 25px;
    color: var(--hero-subtitle-color) !important;
    font-size: var(--hero-subtitle-size) !important;
    line-height: 1.62;
}

.hero[data-hero-root] [data-hero-button] {
    --hero-button-background: #d4af37;
    --hero-button-color: #0b1120;
    width: fit-content;
    border: 2px solid transparent;
    background: var(--hero-button-background);
    color: var(--hero-button-color);
}

.hero[data-hero-root] [data-hero-button][data-button-style="outline"] {
    border-color: var(--hero-button-background);
    background: transparent;
    color: var(--hero-button-background);
}

.hero[data-hero-root] [data-hero-button][data-button-style="ghost"] {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.14);
    color: var(--hero-button-color);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero[data-hero-root] .hero-visual {
    position: absolute;
    inset: 0 !important;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
}

.hero[data-hero-root] .hero-bg {
    position: absolute;
    inset: 0 !important;
    z-index: 2;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #0b1120;
}

.hero[data-hero-root] .hero-full-bg.slide {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: cover !important;
    object-position: var(--hero-media-x) var(--hero-media-y);
    transform: scale(1);
    transition: opacity 0.9s ease, transform 6s ease;
}

.hero[data-transition="fade"] .hero-full-bg.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero[data-transition="fade-zoom"] .hero-full-bg.slide.active {
    opacity: 1;
    transform: scale(1.07);
}

.hero[data-transition="slide"] .hero-full-bg.slide {
    opacity: 0;
    transform: translateX(5%);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero[data-transition="slide"][data-slide-direction="previous"] .hero-full-bg.slide {
    transform: translateX(-5%);
}

.hero[data-transition="slide"] .hero-full-bg.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero[data-hero-root] .hero-overlay {
    display: block;
    background: linear-gradient(to right, var(--hero-overlay-strong) 0%, var(--hero-overlay-soft) 58%, transparent 100%);
}

.hero[data-content-horizontal="right"] .hero-overlay {
    background: linear-gradient(to left, var(--hero-overlay-strong) 0%, var(--hero-overlay-soft) 58%, transparent 100%);
}

.hero[data-content-horizontal="center"] .hero-overlay {
    background: radial-gradient(circle at center, var(--hero-overlay-strong) 0%, var(--hero-overlay-soft) 58%, transparent 100%);
}

.hero[data-hero-root] .hero-side {
    position: absolute;
    top: 50%;
    right: 28px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: translateY(-50%);
}

.hero[data-hero-root] .slider-arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero[data-hero-root] .slider-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(8, 15, 28, 0.38);
    color: #ffffff;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero[data-hero-root] .slider-arrow:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #0b1120;
    transform: translateY(-2px);
}

.hero-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 10px;
    height: 28px;
    background: #ffffff;
}

.hero[data-hero-root] .hero-float-card-price {
    top: auto;
    left: 28px;
    bottom: 32px;
}

.hero[data-hero-root] .hero-float-card-trust {
    right: 28px;
    bottom: 32px;
}

@media (max-width: 992px) {
    .hero[data-hero-root] {
        min-height: max(680px, 100svh);
        padding: 118px 0 44px;
    }

    .hero[data-hero-root] .hero-content {
        display: flex;
        min-height: 518px;
        text-align: inherit;
    }

    .hero[data-hero-root] .hero-text {
        width: min(88%, var(--hero-content-width));
    }

    .hero[data-text-align-mobile="left"] .hero-text { align-items: flex-start; text-align: left; }
    .hero[data-text-align-mobile="center"] .hero-text { align-items: center; text-align: center; }
    .hero[data-text-align-mobile="right"] .hero-text { align-items: flex-end; text-align: right; }

    .hero[data-hero-root] .hero-text h1,
    html.light-mode .hero[data-hero-root] .hero-text h1,
    html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
    body.light-mode .hero[data-hero-root] .hero-text h1,
    body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
        font-size: var(--hero-title-size-mobile) !important;
    }

    .hero[data-hero-root] .hero-text p,
    html.light-mode .hero[data-hero-root] .hero-text p,
    html[data-theme="light"] .hero[data-hero-root] .hero-text p,
    body.light-mode .hero[data-hero-root] .hero-text p,
    body[data-theme="light"] .hero[data-hero-root] .hero-text p {
        font-size: var(--hero-subtitle-size-mobile) !important;
    }

    .hero[data-hero-root] .hero-side {
        top: auto;
        right: 50%;
        bottom: 24px;
        flex-direction: row;
        transform: translateX(50%);
    }

    .hero[data-hero-root] .slider-arrows,
    .hero-dots {
        flex-direction: row;
    }

    .hero-dot.active {
        width: 28px;
        height: 10px;
    }

    .hero[data-hero-root] .hero-float-card-price {
        left: 16px;
        bottom: 82px;
    }

    .hero[data-hero-root] .hero-float-card-trust {
        right: 16px;
        bottom: 82px;
        max-width: 250px;
    }
}

@media (max-width: 560px) {
    .hero[data-hero-root] {
        min-height: max(640px, 100svh);
        padding-top: 104px;
    }

    .hero[data-hero-root] .hero-content {
        min-height: 500px;
    }

    .hero[data-hero-root] .hero-text {
        width: 84%;
    }

    .hero[data-hero-root] .hero-float-card {
        font-size: 0.66rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero[data-hero-root] .hero-full-bg.slide,
    .hero[data-hero-root] .hero-text {
        transition-duration: 0.01ms !important;
        transform: none !important;
    }
}

/* Restored classic split homepage hero */
body.home-page {
    background: #ffffff;
}

.hero[data-hero-root] {
    --hero-content-width: 620px;
    --hero-title-size: 82px;
    --hero-title-size-mobile: 38px;
    --hero-subtitle-size: 18px;
    --hero-subtitle-size-mobile: 15px;
    --hero-kicker-size: 14px;
    --hero-title-color: #021f41;
    --hero-subtitle-color: #405064;
    --hero-kicker-color: #5a4b39;
    min-height: 720px;
    padding: 118px 0 70px;
    background: #ffffff;
    color: #14202b;
}

.hero[data-hero-root]::before {
    display: block;
    content: "";
    position: absolute;
    top: 94px;
    right: -3vw;
    width: min(47vw, 720px);
    height: min(31vw, 430px);
    z-index: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='300 0 380 170'%3E%3Cpath fill='%23FB8E27' d='M400 8c14 1 50 33 66 51 22-2 64-14 88-7 9 3 13 7 13 12 0 11-45 18-83 24-11 2-24 6-31 14-8 10-26 42-42 54-8 6-15 2-13-8l18-58c-28 6-69 13-93 6-13-4-18-13-10-20 8-8 24 7 38 8 11 1 39-5 67-11-12-24-31-47-43-59-6-6-2-8 25-6z'/%3E%3C/svg%3E") center / contain no-repeat;
    filter: drop-shadow(0 30px 54px rgba(251, 142, 39, 0.22));
    opacity: 0.66;
    transform: rotate(-2deg);
}

.hero[data-hero-root] .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.92fr);
    gap: 76px;
    align-items: center;
    justify-content: normal;
    min-height: 530px;
    padding-top: 0;
}

.hero[data-hero-root] .hero-text {
    grid-column: 1;
    width: min(100%, var(--hero-content-width));
    max-width: var(--hero-content-width);
    min-height: 0;
    margin: 0;
    color: #14202b;
}

.hero[data-content-horizontal="right"] .hero-text {
    grid-column: 2;
}

.hero[data-content-horizontal="right"] .hero-visual {
    grid-column: 1;
    grid-row: 1;
}

.hero[data-content-horizontal="center"] .hero-content {
    grid-template-columns: minmax(0, 1fr);
    max-width: 850px;
    margin-inline: auto;
}

.hero[data-content-horizontal="center"] .hero-text,
.hero[data-content-horizontal="center"] .hero-visual {
    grid-column: 1;
}

.hero[data-content-horizontal="center"] .hero-visual {
    max-width: 680px;
    margin-inline: auto;
}

.hero[data-hero-root] .hero-kicker {
    min-height: 0;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--hero-kicker-color);
    font-size: var(--hero-kicker-size);
    font-weight: 800;
    line-height: 1.3;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.hero[data-hero-root] .hero-text h1,
html.light-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
body.light-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--hero-title-color) !important;
    font-size: min(var(--hero-title-size), 86px) !important;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero[data-hero-root] .hero-text p,
html.light-mode .hero[data-hero-root] .hero-text p,
html[data-theme="light"] .hero[data-hero-root] .hero-text p,
body.light-mode .hero[data-hero-root] .hero-text p,
body[data-theme="light"] .hero[data-hero-root] .hero-text p {
    max-width: 600px;
    margin: 0 0 24px;
    color: var(--hero-subtitle-color) !important;
    font-size: var(--hero-subtitle-size) !important;
    line-height: 1.5;
}

.hero[data-hero-root] .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero[data-hero-root] [data-hero-button] {
    box-shadow: 0 16px 34px rgba(251, 142, 39, 0.2);
}

.hero[data-hero-root] .hero-programs-btn {
    border: 1px solid rgba(2, 31, 65, 0.18);
    background: #ffffff;
    color: #021f41;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero[data-hero-root] .hero-programs-btn:hover {
    border-color: rgba(251, 142, 39, 0.55);
    color: #fb8e27;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

#programs {
    scroll-margin-top: 110px;
}

.hero[data-hero-root] .hero-visual {
    position: relative !important;
    inset: auto !important;
    grid-column: 2;
    z-index: 2;
    width: 100%;
    max-width: none;
    min-height: 500px;
    margin: 0;
}

.hero[data-hero-root] .hero-bg {
    position: absolute;
    inset: 26px 0 18px 26px !important;
    z-index: 2;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    background: #fff2e4;
    box-shadow: 0 30px 70px rgba(2, 31, 65, 0.16);
}

.hero[data-hero-root] .hero-full-bg.slide {
    position: absolute;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: var(--hero-media-x) var(--hero-media-y);
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.75s ease, transform 3.5s ease;
}

.hero[data-transition="fade"] .hero-full-bg.slide.active,
.hero[data-transition="fade-zoom"] .hero-full-bg.slide.active,
.hero[data-transition="slide"] .hero-full-bg.slide.active {
    opacity: 1;
    transform: scale(1.045);
}

.hero[data-transition="slide"] .hero-full-bg.slide {
    transform: translateX(3%);
}

.hero[data-transition="slide"][data-slide-direction="previous"] .hero-full-bg.slide {
    transform: translateX(-3%);
}

.hero[data-hero-root] .hero-overlay {
    display: none;
}

.hero[data-hero-root] .hero-float-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(2, 31, 65, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(2, 31, 65, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero[data-hero-root] .hero-float-card-price {
    top: 112px;
    left: 0;
    bottom: auto;
    display: grid;
    gap: 7px;
    min-width: 170px;
    padding: 17px 18px;
}

.hero[data-hero-root] .hero-float-card-price span {
    color: #6f7680;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero[data-hero-root] .hero-float-card-price strong {
    color: #14202b;
    font-size: 1.45rem;
    line-height: 1.05;
}

.hero[data-hero-root] .hero-float-card-trust {
    right: 12px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: min(330px, calc(100% - 54px));
    min-height: 38px;
    padding: 0 14px;
    color: #4f5964;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero[data-hero-root] .hero-float-card-trust i {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fb8e27;
    color: #ffffff;
    font-size: 0.7rem;
}

.hero[data-hero-root] .hero-side {
    position: absolute;
    top: 58px;
    right: 26px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    transform: none;
}

.hero[data-hero-root] .slider-arrows {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.hero[data-hero-root] .slider-arrow {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #021f41;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(2, 31, 65, 0.25);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.hero[data-hero-root] .slider-arrow:hover {
    background: #fb8e27;
    color: #ffffff;
    transform: scale(1.04);
}

.hero[data-hero-root] .hero-dots {
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px;
}

.hero[data-hero-root] .hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(2, 31, 65, 0.26);
}

.hero[data-hero-root] .hero-dot.active {
    width: 26px;
    height: 8px;
    background: #021f41;
}

@media (min-width: 1300px) {
    .hero[data-hero-root] .hero-content {
        max-width: 1400px;
    }
}

@media (max-width: 1180px) {
    .hero[data-hero-root] .hero-content {
        grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.9fr);
        gap: 52px;
    }

    .hero[data-hero-root] .hero-text h1,
    html.light-mode .hero[data-hero-root] .hero-text h1,
    html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
    body.light-mode .hero[data-hero-root] .hero-text h1,
    body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
        font-size: min(var(--hero-title-size), 72px) !important;
    }
}

@media (max-width: 992px) {
    .hero[data-hero-root] {
        min-height: auto;
        padding: 108px 0 54px;
    }

    .hero[data-hero-root]::before {
        top: 290px;
        right: -18vw;
        width: 82vw;
        height: 42vw;
    }

    .hero[data-hero-root] .hero-content,
    .hero[data-content-horizontal="center"] .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        max-width: 680px;
        text-align: inherit;
    }

    .hero[data-hero-root] .hero-text,
    .hero[data-hero-root] .hero-visual,
    .hero[data-content-horizontal="right"] .hero-text,
    .hero[data-content-horizontal="right"] .hero-visual,
    .hero[data-content-horizontal="center"] .hero-text,
    .hero[data-content-horizontal="center"] .hero-visual {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }

    .hero[data-text-align-mobile="left"] .hero-text { align-items: flex-start; text-align: left; }
    .hero[data-text-align-mobile="center"] .hero-text { align-items: center; text-align: center; }
    .hero[data-text-align-mobile="right"] .hero-text { align-items: flex-end; text-align: right; }

    .hero[data-hero-root] .hero-text h1,
    html.light-mode .hero[data-hero-root] .hero-text h1,
    html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
    body.light-mode .hero[data-hero-root] .hero-text h1,
    body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
        max-width: 620px;
        font-size: var(--hero-title-size-mobile) !important;
        line-height: 1.02;
    }

    .hero[data-hero-root] .hero-text p,
    html.light-mode .hero[data-hero-root] .hero-text p,
    html[data-theme="light"] .hero[data-hero-root] .hero-text p,
    body.light-mode .hero[data-hero-root] .hero-text p,
    body[data-theme="light"] .hero[data-hero-root] .hero-text p {
        font-size: var(--hero-subtitle-size-mobile) !important;
    }

    .hero[data-hero-root] .hero-actions {
        justify-content: inherit;
        gap: 10px;
    }

    .hero[data-hero-root] .hero-visual {
        min-height: 440px;
        max-width: 560px;
        margin-inline: auto;
    }

    .hero[data-hero-root] .hero-bg {
        inset: 12px 8px 24px 20px !important;
    }

    .hero[data-hero-root] .hero-float-card-price {
        top: 74px;
        left: 0;
    }

    .hero[data-hero-root] .hero-side {
        top: 34px;
        right: 28px;
    }
}

@media (max-width: 560px) {
    .hero[data-hero-root] {
        padding-top: 92px;
    }

    .hero[data-hero-root] .hero-visual {
        min-height: 365px;
    }

    .hero[data-hero-root] .hero-bg {
        border-width: 7px;
        border-radius: 16px;
        inset: 22px 0 24px 14px !important;
    }

    .hero[data-hero-root] .hero-float-card-price {
        top: 64px;
        min-width: 145px;
        padding: 13px 14px;
    }

    .hero[data-hero-root] .hero-float-card-price strong {
        font-size: 1.08rem;
    }

    .hero[data-hero-root] .hero-float-card-trust {
        right: 6px;
        bottom: 32px;
        min-height: 34px;
        font-size: 0.72rem;
    }

    .hero[data-hero-root] .hero-side {
        top: 36px;
        right: 16px;
    }

    .hero[data-hero-root] .slider-arrow {
        width: 44px;
        height: 44px;
    }
}

/* iPhone/mobile hero polish: keep the plane accent out of the copy and make the visual card fit the viewport. */
@media (max-width: 560px) {
    .hero[data-hero-root] {
        --hero-title-size-mobile: clamp(2rem, 9.6vw, 2.35rem);
        --hero-subtitle-size-mobile: 0.94rem;
        overflow: hidden;
        padding: 104px 0 30px;
    }

    .hero[data-hero-root]::before {
        top: 365px;
        right: -30vw;
        width: 76vw;
        height: 29vw;
        opacity: 0.34;
        filter: drop-shadow(0 18px 32px rgba(251, 142, 39, 0.14));
        transform: rotate(-8deg);
    }

    .hero[data-hero-root] .hero-content,
    .hero[data-content-horizontal="center"] .hero-content {
        gap: 20px;
        max-width: 430px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero[data-hero-root] .hero-kicker {
        margin-bottom: 18px;
        font-size: 0.78rem;
    }

    .hero[data-hero-root] .hero-text h1,
    html.light-mode .hero[data-hero-root] .hero-text h1,
    html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
    body.light-mode .hero[data-hero-root] .hero-text h1,
    body[data-theme="light"] .hero[data-hero-root] .hero-text h1 {
        max-width: 355px;
        margin-bottom: 16px;
        line-height: 1.03;
    }

    .hero[data-hero-root] .hero-text p,
    html.light-mode .hero[data-hero-root] .hero-text p,
    html[data-theme="light"] .hero[data-hero-root] .hero-text p,
    body.light-mode .hero[data-hero-root] .hero-text p,
    body[data-theme="light"] .hero[data-hero-root] .hero-text p {
        max-width: 350px;
        margin-bottom: 18px;
        line-height: 1.45;
    }

    .hero[data-hero-root] [data-hero-button] {
        min-height: 48px;
        padding: 0 18px;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .hero[data-hero-root] .hero-visual {
        width: 100%;
        min-height: clamp(300px, 82vw, 340px);
        margin-top: 2px;
    }

    .hero[data-hero-root] .hero-bg {
        inset: 16px 0 16px 0 !important;
        border-width: 6px;
        border-radius: 14px;
        box-shadow: 0 20px 42px rgba(2, 31, 65, 0.15);
    }

    .hero[data-hero-root] .hero-float-card-price {
        top: 46px;
        left: 16px;
        min-width: 128px;
        padding: 11px 12px;
        border-radius: 9px;
    }

    .hero[data-hero-root] .hero-float-card-price span {
        font-size: 0.68rem;
    }

    .hero[data-hero-root] .hero-float-card-price strong {
        font-size: 0.98rem;
    }

    .hero[data-hero-root] .hero-side {
        top: 38px;
        right: 14px;
    }

    .hero[data-hero-root] .slider-arrows {
        gap: 7px;
    }

    .hero[data-hero-root] .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero[data-hero-root] .hero-float-card-trust {
        right: 14px;
        bottom: 22px;
        max-width: calc(100% - 28px);
        min-height: 32px;
        padding: 0 11px;
        font-size: 0.68rem;
        border-radius: 9px;
    }

    .hero[data-hero-root] .hero-float-card-trust i {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }
}

@media (max-width: 380px) {
    .hero[data-hero-root] {
        --hero-title-size-mobile: clamp(1.85rem, 9.2vw, 2.12rem);
    }

    .hero[data-hero-root]::before {
        top: 348px;
        opacity: 0.24;
    }

    .hero[data-hero-root] .hero-content,
    .hero[data-content-horizontal="center"] .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero[data-hero-root] [data-hero-button] {
        max-width: 100%;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .hero[data-hero-root] .hero-visual {
        min-height: 292px;
    }
}

/* Footer layout polish */
.footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.9fr) minmax(340px, 1fr) minmax(340px, 0.95fr);
    gap: clamp(42px, 5vw, 88px);
    align-items: start;
    max-width: 1180px;
}

.footer-full .footer-grid {
    grid-template-columns: minmax(210px, 1fr) repeat(3, minmax(120px, 0.68fr)) minmax(280px, 1.05fr) minmax(310px, 1.1fr);
    gap: 32px;
    max-width: 1380px;
}

.home-page .footer-full .footer-grid.footer-grid-compact,
.footer-full .footer-grid.footer-grid-compact {
    grid-template-columns: minmax(260px, 0.85fr) minmax(390px, 1fr) minmax(390px, 0.95fr);
    gap: clamp(54px, 6vw, 110px);
    max-width: 1240px;
}

.footer-col {
    min-width: 0;
}

.footer .logo {
    display: inline-flex;
    align-items: center;
}

.footer .brand-col p {
    max-width: 240px;
    line-height: 1.55;
}

.footer .payment-methods {
    margin-top: 22px;
}

.footer .payment-methods h4 {
    margin: 0 0 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 800;
}

.footer .payment-method-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer .payment-card {
    width: 50px;
    height: 34px;
    flex: 0 0 auto;
}

.footer .contact-col {
    min-width: 0;
    max-width: 380px;
}

.footer .contact-col ul {
    gap: 16px;
}

.footer .contact-col li,
.footer .footer-contact-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-bottom: 0;
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: normal;
}

.footer .contact-col li i,
.footer .footer-contact-item i {
    width: 24px;
    margin-top: 4px;
    text-align: center;
}

.footer .contact-col li span,
.footer .contact-col li a,
.footer .footer-contact-text {
    min-width: 0;
}

.footer .contact-col li > span:not(.footer-contact-text) {
    display: block;
    overflow-wrap: anywhere;
}

.footer .footer-contact-text {
    display: grid;
    gap: 4px;
}

.footer .footer-contact-text span {
    display: block;
}

.footer .footer-newsletter-col {
    max-width: 380px;
}

.footer .footer-newsletter-col p {
    max-width: 330px;
}

.footer .footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 340px);
    gap: 12px;
}

.footer .footer-newsletter-form .input-wrapper,
.footer .footer-newsletter-form .btn {
    width: 100%;
    min-width: 0;
}

.footer-grid-compact .contact-col {
    max-width: 430px;
}

.footer-grid-compact .footer-newsletter-col {
    max-width: 420px;
}

.footer-grid-compact .footer-newsletter-col p {
    max-width: 360px;
}

.footer-grid-compact .footer-newsletter-form {
    width: min(100%, 360px);
}

@media (min-width: 901px) {
    .footer-grid-compact .footer-contact-item > span:not(.footer-contact-text) {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 1200px) {
    .footer-full .footer-grid {
        grid-template-columns: minmax(230px, 1fr) minmax(300px, 1fr) minmax(300px, 1fr);
    }

    .home-page .footer-full .footer-grid.footer-grid-compact,
    .footer-full .footer-grid.footer-grid-compact {
        grid-template-columns: minmax(230px, 0.9fr) minmax(320px, 1fr) minmax(320px, 1fr);
        gap: 38px;
    }
}

@media (max-width: 900px) {
    .footer .footer-grid,
    .footer-full .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero[data-hero-root] .hero-actions {
        width: 100%;
        justify-content: center;
    }

    .hero[data-hero-root] .hero-actions .btn {
        min-width: min(100%, 210px);
    }

    .footer .footer-grid,
    .footer-full .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .footer .brand-col p,
    .footer .footer-newsletter-col,
    .footer .footer-newsletter-col p,
    .footer .footer-newsletter-form {
        max-width: none;
        width: 100%;
    }
}

/* Photo gallery must be visible immediately on mobile Safari and desktop without waiting for scroll reveal. */
.photo-gallery-page.reveal,
.photo-gallery-page.reveal.active,
[data-photo-gallery-page] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.photo-gallery-page {
    padding-top: clamp(24px, 3vw, 42px);
}

.photo-gallery-grid {
    align-items: stretch;
}

.photo-gallery-item img {
    display: block;
}

@media (max-width: 640px) {
    .photo-gallery-page {
        padding-top: 22px;
        padding-bottom: 72px;
    }

    .photo-gallery-grid {
        gap: 14px;
    }

    .photo-gallery-item,
    .photo-gallery-item.is-featured,
    .photo-gallery-item:nth-child(6n + 3),
    .photo-gallery-item:nth-child(6n + 5) {
        min-height: 245px;
        aspect-ratio: 4 / 3;
    }
}

/* Final public theme guard. */
html:not(.dark-mode) {
    --guide-ink: #000000;
    --text-light: #000000;
}

html:not(.dark-mode) .hero[data-hero-root] .hero-text h1,
html.light-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="light"] .hero[data-hero-root] .hero-text h1,
body.light-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="light"] .hero[data-hero-root] .hero-text h1,
html:not(.dark-mode) .home-stat strong,
html.light-mode .home-stat strong,
html[data-theme="light"] .home-stat strong {
    color: #000000 !important;
}

html.dark-mode,
html[data-theme="dark"] {
    --bg-main: #07111f;
    --bg-card: #101826;
    --bg-card-hover: #142238;
    --guide-ink: #f8fafc;
    --guide-navy: #f8fafc;
    --text-light: #f8fafc;
    --text-muted: #b8c2cf;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-light: rgba(255, 255, 255, 0.18);
}

html.dark-mode body,
html[data-theme="dark"] body {
    background: #07111f !important;
    color: #f8fafc;
}

html.dark-mode .top-bar-container,
html[data-theme="dark"] .top-bar-container,
html.dark-mode .nav-container,
html[data-theme="dark"] .nav-container {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(9, 16, 28, 0.94) !important;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
}

html.dark-mode .nav-links a,
html[data-theme="dark"] .nav-links a,
html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .theme-toggle,
html[data-theme="dark"] .theme-toggle,
html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a {
    color: #f8fafc !important;
}

html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .theme-toggle,
html[data-theme="dark"] .theme-toggle,
html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a {
    border-color: rgba(255, 255, 255, 0.14) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

html.dark-mode .hero,
html[data-theme="dark"] .hero,
html.dark-mode .hero[data-hero-root],
html[data-theme="dark"] .hero[data-hero-root] {
    background: #07111f !important;
}

html.dark-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
body.dark-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
html.dark-mode .home-stat strong,
html[data-theme="dark"] .home-stat strong {
    color: #ffffff !important;
}

html.dark-mode .hero[data-hero-root] .hero-text p,
html[data-theme="dark"] .hero[data-hero-root] .hero-text p,
body.dark-mode .hero[data-hero-root] .hero-text p,
body[data-theme="dark"] .hero[data-hero-root] .hero-text p,
html.dark-mode .top-bar-ticker,
html[data-theme="dark"] .top-bar-ticker {
    color: #b8c2cf !important;
}

html.dark-mode .hero-bg,
html[data-theme="dark"] .hero-bg {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: #101826 !important;
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.46);
}

html.dark-mode .card,
html[data-theme="dark"] .card,
html.dark-mode .filter-tag,
html[data-theme="dark"] .filter-tag,
html.dark-mode .feature-item,
html[data-theme="dark"] .feature-item,
html.dark-mode .newsletter-box,
html[data-theme="dark"] .newsletter-box,
html.dark-mode .footer,
html[data-theme="dark"] .footer {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: #101826 !important;
    color: #f8fafc !important;
}

/* Dark mode is intentionally disabled. Force the public site back to the light palette. */
.theme-toggle {
    display: none !important;
}

html.dark-mode,
html[data-theme="dark"],
body.dark-mode,
body[data-theme="dark"] {
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fff2e4;
    --guide-ink: #000000;
    --guide-navy: #000000;
    --text-light: #000000;
    --text-muted: #4f5964;
    --border-color: rgba(2, 31, 65, 0.1);
    --border-light: rgba(2, 31, 65, 0.16);
}

html.dark-mode body,
html[data-theme="dark"] body,
body.dark-mode,
body[data-theme="dark"] {
    background: #ffffff !important;
    color: #000000 !important;
}

html.dark-mode .top-bar-container,
html[data-theme="dark"] .top-bar-container,
html.dark-mode .nav-container,
html[data-theme="dark"] .nav-container {
    border-color: rgba(2, 31, 65, 0.08) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 18px 45px rgba(2, 31, 65, 0.12) !important;
}

html.dark-mode .nav-links a,
html[data-theme="dark"] .nav-links a,
html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a {
    color: #14202b !important;
}

html.dark-mode .lang-switch,
html[data-theme="dark"] .lang-switch,
html.dark-mode .menu-btn,
html[data-theme="dark"] .menu-btn,
html.dark-mode .top-bar-social a,
html[data-theme="dark"] .top-bar-social a {
    border-color: rgba(2, 31, 65, 0.1) !important;
    background: #fff7ef !important;
}

html.dark-mode .top-bar-contact a,
html[data-theme="dark"] .top-bar-contact a {
    background: #fff2e4 !important;
}

html.dark-mode .hero,
html[data-theme="dark"] .hero,
html.dark-mode .hero[data-hero-root],
html[data-theme="dark"] .hero[data-hero-root] {
    background: #ffffff !important;
}

html.dark-mode .hero[data-hero-root] .hero-text h1,
html[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
body.dark-mode .hero[data-hero-root] .hero-text h1,
body[data-theme="dark"] .hero[data-hero-root] .hero-text h1,
html.dark-mode .home-stat strong,
html[data-theme="dark"] .home-stat strong {
    color: #000000 !important;
}

html.dark-mode .hero[data-hero-root] .hero-text p,
html[data-theme="dark"] .hero[data-hero-root] .hero-text p,
body.dark-mode .hero[data-hero-root] .hero-text p,
body[data-theme="dark"] .hero[data-hero-root] .hero-text p,
html.dark-mode .top-bar-ticker,
html[data-theme="dark"] .top-bar-ticker {
    color: #4f5964 !important;
}

html.dark-mode .hero-bg,
html[data-theme="dark"] .hero-bg {
    border-color: rgba(255, 255, 255, 0.72) !important;
    background: #fff2e4 !important;
    box-shadow: 0 32px 70px rgba(2, 31, 65, 0.16) !important;
}

html.dark-mode .card,
html[data-theme="dark"] .card,
html.dark-mode .filter-tag,
html[data-theme="dark"] .filter-tag,
html.dark-mode .feature-item,
html[data-theme="dark"] .feature-item,
html.dark-mode .newsletter-box,
html[data-theme="dark"] .newsletter-box {
    border-color: rgba(2, 31, 65, 0.1) !important;
    background: #ffffff !important;
    color: #000000 !important;
}

html.dark-mode .footer,
html[data-theme="dark"] .footer {
    border-color: rgba(2, 31, 65, 0.08) !important;
    background: #ffffff !important;
    color: #14202b !important;
}

/* Final excursions polish: visible country filters, natural WhatsApp colour,
   and even utility cards on wide pages. */
.excursions-page .excursion-country-filter,
.excursions-page .hotel-country-filter {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    width: min(1188px, calc(100% - 32px));
    margin: 0 auto 34px !important;
}

.excursions-page .excursion-country-filter a,
.excursions-page .hotel-country-filter a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(2, 31, 65, 0.14) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #14202b !important;
    box-shadow: 0 10px 22px rgba(2, 31, 65, 0.05);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
}

.excursions-page .excursion-country-filter a.active,
.excursions-page .excursion-country-filter a:hover,
.excursions-page .hotel-country-filter a.active,
.excursions-page .hotel-country-filter a:hover {
    border-color: transparent !important;
    background: #fb8e27 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(251, 142, 39, 0.24);
}

.floating-whatsapp,
.whatsapp-btn {
    background: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34) !important;
}

.floating-whatsapp i,
.whatsapp-btn i {
    color: #ffffff !important;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible,
.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
    background: #1ebe5d !important;
    color: #ffffff !important;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42) !important;
}

.features.container,
.features {
    width: min(1188px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
    padding: 0 !important;
}

.features {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.feature-item,
html.light-mode .feature-item,
body.light-mode .feature-item {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center !important;
    min-width: 0 !important;
    min-height: 138px;
    padding: 24px 26px !important;
}

.feature-item .icon-box {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.feature-item h4 {
    margin: 0 0 6px;
    line-height: 1.35;
}

.feature-item p {
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .excursions-page .excursion-country-filter,
    .excursions-page .hotel-country-filter {
        width: calc(100% - 28px);
        justify-content: center;
    }

    .excursions-page .excursion-country-filter a,
    .excursions-page .hotel-country-filter a {
        flex: 1 1 150px;
        min-width: 0;
    }

    .features.container,
    .features {
        width: calc(100% - 28px);
    }

    .features {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-item,
    html.light-mode .feature-item,
    body.light-mode .feature-item {
        min-height: 116px;
        padding: 22px !important;
    }
}

/* Final inner-page navbar cleanup: the legacy solid/scrolled bar can show a
   rectangular lip around the rounded white navigation when the page scrolls. */
body.inner-page .navbar,
body.inner-page .navbar.solid,
body.inner-page .navbar.scrolled {
    left: auto !important;
    width: min(1232px, calc(100% - 32px)) !important;
    max-width: calc(100% - 32px) !important;
    margin: 14px auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
}

body.inner-page .navbar::before,
body.inner-page .navbar::after {
    display: none !important;
    content: none !important;
}

body.inner-page .nav-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    background-clip: padding-box !important;
    box-shadow: 0 14px 34px rgba(2, 31, 65, 0.08) !important;
}

@media (min-width: 993px) {
    body.inner-page .nav-container {
        overflow: visible;
    }
}

@media (max-width: 640px) {
    body.inner-page .navbar,
    body.inner-page .navbar.solid,
    body.inner-page .navbar.scrolled {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        margin-top: 10px !important;
    }
}

/* Final home-page navbar cleanup: when scrolling, the legacy fixed bar should not
   appear behind the rounded white navigation shell. */
body.home-page .navbar,
body.home-page .navbar.scrolled,
body.home-page .navbar.solid {
    left: 50% !important;
    width: min(1232px, calc(100% - 32px)) !important;
    max-width: calc(100% - 32px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: translateX(-50%) !important;
}

body.home-page .navbar::before,
body.home-page .navbar::after {
    display: none !important;
    content: none !important;
}

body.home-page .nav-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    background-clip: padding-box !important;
    box-shadow: 0 14px 34px rgba(2, 31, 65, 0.08) !important;
}

@media (min-width: 993px) {
    body.home-page .nav-container {
        overflow: visible;
    }
}

@media (max-width: 640px) {
    body.home-page .navbar,
    body.home-page .navbar.scrolled,
    body.home-page .navbar.solid {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
    }
}

/* Booking optional visits: keep cards readable when programs have many extras. */
.visit-options-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.visit-option-checkbox {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.visit-option-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid rgba(2, 31, 65, 0.12);
    border-radius: 10px;
    background: #151515;
    color: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.visit-option-card:hover,
.visit-option-checkbox:focus-visible + .visit-option-card {
    border-color: rgba(255, 137, 31, 0.7);
    box-shadow: 0 12px 26px rgba(255, 137, 31, 0.16);
}

.visit-option-checkbox:checked + .visit-option-card {
    border-color: #ff891f;
    background: #ff891f;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(255, 137, 31, 0.22);
}

.visit-option-main {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.visit-option-main i {
    color: #ff891f;
}

.visit-option-checkbox:checked + .visit-option-card .visit-option-main i {
    color: #ffffff;
}

.visit-option-main [data-visit-label] {
    min-width: 0;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: normal;
}

.visit-option-price {
    justify-self: end;
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 137, 31, 0.13);
    color: #ff891f;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.visit-option-checkbox:checked + .visit-option-card .visit-option-price {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.visit-participant-control {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: max-content;
    color: inherit;
    font-weight: 900;
    white-space: nowrap;
}

.visit-participant-label {
    color: inherit;
    opacity: 0.78;
    font-size: 0.78rem;
}

.visit-count-btn {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    font-weight: 900;
    cursor: pointer;
}

.visit-count-btn:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.visit-tooltip {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    z-index: 2;
}

.visit-tooltip-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    display: none;
    width: min(280px, calc(100vw - 48px));
    padding: 12px 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 18px 46px rgba(2, 31, 65, 0.22);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: start;
}

.visit-tooltip:hover .visit-tooltip-panel,
.visit-tooltip:focus .visit-tooltip-panel,
.visit-tooltip:focus-within .visit-tooltip-panel {
    display: grid;
    gap: 6px;
}

@media (max-width: 1180px) {
    .visit-option-card {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .visit-option-price,
    .visit-participant-control,
    .visit-tooltip {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .visit-options-selector {
        grid-template-columns: minmax(0, 1fr);
    }
}

.lang-switch.lang-switch-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.language-menu {
    position: relative;
    z-index: 10050;
}

.language-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 64px;
    height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.language-menu-button:hover,
.language-menu.is-open .language-menu-button {
    border-color: rgba(251, 142, 39, 0.58);
    box-shadow: 0 16px 38px rgba(251, 142, 39, 0.14);
}

.language-menu-button:focus-visible {
    outline: 3px solid rgba(251, 142, 39, 0.25);
    outline-offset: 2px;
}

.language-menu-chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
}

.language-menu.is-open .language-menu-chevron {
    transform: translateY(2px) rotate(225deg);
}

.language-menu-list {
    position: absolute;
    z-index: 10060;
    top: calc(100% + 8px);
    right: 0;
    min-width: 94px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
}

.language-menu.is-open .language-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-menu-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #111827;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.language-menu-option:hover,
.language-menu-option:focus-visible {
    background: #fff3e7;
    color: #c86600;
    outline: none;
}

.language-menu-option.is-active {
    background: #fb8e27;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(251, 142, 39, 0.22);
}

@media (max-width: 640px) {
    .language-menu-button {
        min-width: 58px;
        height: 42px;
        padding: 0 15px;
    }

    .language-menu-list {
        right: -4px;
    }
}
