.language-selector-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.language-selector-header {
    text-align: center;
    margin-bottom: 36px;
    max-width: 700px;
}

.language-selector-header h2 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #143a5c 0%, #4682b4 60%, #ff8c00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    line-height: 1.15;
}

.language-selector-header p {
    font-size: 1.05rem;
    color: #627287;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

.language-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 700px;
    justify-items: center;
}

.language-btn {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 58, 92, 0.08);
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    color: #143a5c;
    box-shadow: 0 14px 34px rgba(15, 34, 53, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    height: 148px;
}

.language-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #143a5c 0%, #4682b4 65%, #ff8c00 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.language-btn:hover,
.language-btn:focus {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 34, 53, 0.16);
    color: #ffffff;
}

.language-btn:hover::before,
.language-btn:focus::before {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.language-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    background: rgba(70, 130, 180, 0.12);
    color: #143a5c;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.language-btn:hover .language-icon,
.language-btn:focus .language-icon {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.language-text {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.language-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #627287;
    background: rgba(20, 58, 92, 0.06);
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.language-btn:hover .language-flag,
.language-btn:focus .language-flag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.selected-indicator {
    position: absolute;
    bottom: 12px;
    font-size: 0.69rem;
    font-weight: 600;
    background: rgba(255, 140, 0, 0.15);
    color: #b35e00;
    padding: 4px 10px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.language-btn:hover .selected-indicator,
.language-btn:focus .selected-indicator {
    opacity: 1;
    transform: translateY(0);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.btn-english {
    border-top: 4px solid #4682b4;
}

.btn-french {
    border-top: 4px solid #143a5c;
}

.btn-spanish {
    border-top: 4px solid #ff8c00;
}

.btn-german {
    border-top: 4px solid #2f5d8c;
}

@media (max-width: 992px) {
    .language-selector-container {
        padding-top: 16px;
    }

    .language-selector-header h2 {
        font-size: 2rem;
    }

    .language-selector-header p {
        font-size: 1rem;
    }

    .language-btn {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .language-buttons {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .language-selector-header {
        margin-bottom: 28px;
    }

    .language-selector-header h2 {
        font-size: 1.72rem;
    }

    .language-selector-container {
        padding: 18px 14px 4px;
    }

    .language-btn {
        max-width: none;
        height: 132px;
    }

    .language-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .language-text {
        font-size: 0.94rem;
    }
}

@media (max-width: 480px) {
    .language-selector-header h2 {
        font-size: 1.5rem;
    }

    .language-selector-header p {
        font-size: 0.95rem;
    }

    .btn-content {
        padding: 16px 16px 14px;
        gap: 10px;
    }

    .language-btn {
        height: 126px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-btn {
    animation: fadeInUp 0.5s ease forwards;
}

.language-btn:nth-child(1) { animation-delay: 0.06s; }
.language-btn:nth-child(2) { animation-delay: 0.12s; }
.language-btn:nth-child(3) { animation-delay: 0.18s; }
.language-btn:nth-child(4) { animation-delay: 0.24s; }

:root {
    --ft-primary: #143a5c;
    --ft-primary-strong: #0d2740;
    --ft-secondary: #4682b4;
    --ft-accent: #ff8c00;
    --ft-accent-strong: #ff5a1f;
    --ft-ink: #0f2235;
    --ft-surface: #ffffff;
    --ft-muted: #627287;
    --ft-border: #d6e0ea;
    --ft-shadow: 0 18px 45px rgba(15, 34, 53, 0.12);
    --ft-skeleton: linear-gradient(90deg, #e9eff4 25%, #f8fafc 37%, #e9eff4 63%);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ft-ink);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4f9 100%);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    -webkit-text-size-adjust: 100%;
    font-size: 0.94rem;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.top-shell {
    z-index: 1070;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(20, 58, 92, 0.08);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.top-shell.is-scrolled {
    background: rgba(255, 255, 255, 0.99);
    border-bottom-color: rgba(20, 58, 92, 0.12);
    box-shadow: 0 12px 28px rgba(15, 34, 53, 0.08);
}

.top-shell .navbar {
    transition: padding 0.2s ease;
}

.top-shell.is-scrolled .navbar {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}

.top-shell .container-fluid {
    max-width: 1480px;
}

.navbar-brand {
    min-width: 0;
    max-width: 210px;
}

.navbar-brand img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(20, 58, 92, 0.12);
    flex-shrink: 0;
}

.brand-lockup {
    min-width: 0;
}

.brand-title {
    font-size: clamp(0.96rem, 0.52vw + 0.84rem, 1.18rem);
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
    color: var(--ft-ink);
}

.brand-subtitle {
    font-size: 0.74rem;
    line-height: 1.1;
    color: var(--ft-muted);
    white-space: nowrap;
}

.nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 0.58rem !important;
    color: var(--ft-ink) !important;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--ft-secondary) !important;
}

.nav-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid var(--ft-border);
    background: #fff;
    color: var(--ft-ink);
    font-size: 0.79rem;
    font-weight: 600;
    padding: 0.36rem 0.68rem;
    white-space: nowrap;
}

.nav-chip:hover,
.nav-chip:focus {
    color: var(--ft-primary);
    border-color: rgba(20, 58, 92, 0.2);
    background: #f6f9fc;
}

.nav-auth {
    min-width: 0;
    padding-inline: 0.92rem;
}

.utility-nav {
    flex-wrap: nowrap;
}

.auth-label {
    white-space: nowrap;
}

.btn-brand {
    background: linear-gradient(90deg, var(--ft-primary) 0%, var(--ft-secondary) 55%, var(--ft-accent) 100%);
    background-size: 180% 180%;
    border: none;
    color: #fff;
    animation: ftGradientShift 7s ease infinite;
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    filter: brightness(0.95);
}

.btn-outline-secondary {
    border-color: rgba(20, 58, 92, 0.18);
    color: var(--ft-primary);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    border-color: var(--ft-primary);
    background: var(--ft-primary);
    color: #fff;
}

.surface-card {
    background: var(--ft-surface);
    border: 1px solid var(--ft-border);
    border-radius: 1.25rem;
    box-shadow: var(--ft-shadow);
}

.deferred-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
}

.search-shell {
    min-width: 0;
    width: min(100%, 236px);
    max-width: 236px;
    flex: 0 1 236px;
}

.search-shell .form-control,
.search-shell .btn {
    min-height: 34px;
    font-size: 0.84rem;
}

.search-shell .input-group {
    flex-wrap: nowrap;
}

.search-results-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid var(--ft-border);
    border-radius: 1rem;
    box-shadow: var(--ft-shadow);
    overflow: hidden;
}

.search-results-panel .result-group-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ft-muted);
    background: #f6faf7;
    padding: 0.75rem 1rem 0.5rem;
}

.search-result-link {
    display: block;
    padding: 0.85rem 1rem;
    text-decoration: none;
    color: inherit;
    border-top: 1px solid #eef2ef;
}

.search-result-link:hover,
.search-result-link:focus {
    background: #f6faf7;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 58, 92, 0.12), rgba(70, 130, 180, 0.18));
}

.image-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem;
    background: linear-gradient(135deg, rgba(20, 58, 92, 0.96), rgba(70, 130, 180, 0.86));
    color: #fff;
    text-align: center;
}

.image-fallback span {
    display: block;
    max-width: 16ch;
    font-size: clamp(0.95rem, 0.7vw + 0.8rem, 1.12rem);
    font-weight: 700;
    line-height: 1.3;
}

.img-wrap > .btn,
[data-image-shell] > .btn {
    z-index: 2;
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

.shimmer::before,
.skeleton-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ft-skeleton);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

.skeleton-card,
.skeleton-line {
    position: relative;
    overflow: hidden;
    background: #edf3f8;
    border-radius: 0.75rem;
}

.skeleton-card {
    min-height: 88px;
    margin-bottom: 0.75rem;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 0.5rem;
}

.message-stack {
    position: static;
    top: auto;
    z-index: 1020;
}

.footer-shell {
    background: linear-gradient(180deg, #102744 0%, #081522 100%);
    color: #dce7df;
}

.footer-brand,
.footer-shell a {
    color: #f3f8f4;
    text-decoration: none;
}

.footer-shell a:hover,
.footer-shell a:focus,
.footer-brand:hover,
.footer-brand:focus {
    color: #f7b74f;
}

.footer-icon-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f3f8f4;
}

.footer-icon-link:hover,
.footer-icon-link:focus {
    background: rgba(245, 166, 35, 0.14);
    border-color: rgba(245, 166, 35, 0.28);
}

.footer-list,
.footer-contact,
.ft-mini-list,
.ft-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list,
.footer-contact {
    display: grid;
    gap: 0.8rem;
}

.footer-list li,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer-list i,
.footer-contact i {
    color: var(--ft-accent);
    line-height: 1.2;
    margin-top: 0.1rem;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1010;
    display: grid;
    gap: 0.75rem;
}

.floating-actions a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--ft-shadow);
    color: var(--ft-primary);
    text-decoration: none;
    font-size: 1rem;
}

.text-success {
    color: var(--ft-primary) !important;
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ft-cookie-banner {
    z-index: 1080;
}

.ft-page-hero {
    padding: 2.5rem 0 0.5rem;
}

.ft-page-hero__shell,
.experience-landing-shell {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
    background: linear-gradient(90deg, rgba(20, 58, 92, 0.98) 0%, rgba(70, 130, 180, 0.95) 55%, rgba(255, 140, 0, 0.94) 100%);
    background-size: 170% 170%;
    color: #fff;
    animation: ftGradientShift 10s ease infinite;
}

.experience-landing-shell {
    min-height: 100%;
}

.ft-page-title {
    font-size: clamp(2rem, 1.9vw + 1.35rem, 3.25rem);
    line-height: 1.02;
    margin-bottom: 0.95rem;
}

.ft-page-copy {
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ft-eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--ft-secondary);
}

.ft-page-hero .ft-eyebrow,
.experience-landing .ft-eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.ft-page-hero .text-light-emphasis,
.experience-landing .text-light-emphasis,
.experience-slide-body .text-muted {
    color: rgba(255, 255, 255, 0.78) !important;
}

.ft-badge-row,
.ft-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
}

.ft-hero-note {
    border-radius: 1.1rem;
    padding: 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.ft-hero-note__title {
    margin-bottom: 0.8rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.ft-price-callout {
    font-size: clamp(2rem, 2.1vw + 1.4rem, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.ft-form-card,
.ft-copy-card,
.ft-sidecard,
.ft-map-card,
.ft-admin-panel {
    padding: 1.75rem;
}

.ft-section-heading {
    margin-bottom: 1.35rem;
}

.ft-inline-link {
    color: var(--ft-primary);
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
}

.ft-inline-link:hover,
.ft-inline-link:focus {
    color: var(--ft-accent-strong);
}

.ft-textarea {
    min-height: 138px;
    resize: vertical;
}

.ft-mini-list {
    display: grid;
    gap: 0.8rem;
}

.ft-mini-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--ft-ink);
    line-height: 1.6;
}

.ft-page-hero .ft-mini-list li,
.experience-landing .ft-mini-list li {
    color: rgba(255, 255, 255, 0.92);
}

.ft-mini-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--ft-accent) 0%, var(--ft-accent-strong) 100%);
}

.ft-contact-list {
    display: grid;
    gap: 1rem;
}

.ft-contact-item {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 0.8rem;
    align-items: start;
}

.ft-contact-item i {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--ft-primary);
    background: rgba(70, 130, 180, 0.12);
}

.ft-contact-item a {
    color: var(--ft-primary);
    font-weight: 700;
}

.ft-contact-item a:hover,
.ft-contact-item a:focus {
    color: var(--ft-accent-strong);
}

.ft-map-frame {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.12);
}

.ft-map-frame iframe {
    display: block;
    border: 0;
    filter: grayscale(12%);
}

.ft-sidebar-stack {
    display: grid;
    gap: 1rem;
}

.ft-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.ft-stat-card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 0.35rem;
}

.ft-stat-card strong {
    font-size: 1.4rem;
    line-height: 1;
}

.ft-stat-card span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
}

.ft-feature-card,
.ft-role-card {
    height: 100%;
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.ft-feature-card i {
    font-size: 1.2rem;
    color: var(--ft-primary);
    margin-bottom: 0.85rem;
}

.ft-feature-card h3,
.ft-role-card h3 {
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.ft-feature-card p,
.ft-role-card p {
    margin: 0;
    color: var(--ft-muted);
    line-height: 1.65;
    font-size: 0.88rem;
}

.ft-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ft-admin-panel {
    border-style: dashed;
}

.ft-radio-stack {
    display: grid;
    gap: 0.75rem;
}

.ft-radio-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.12);
    background: #f8fbfe;
}

.ft-radio-card input {
    margin: 0;
}

.ft-inline-panel {
    padding: 1rem 1.1rem;
    background: #f8fbfe;
    box-shadow: none;
}

.ft-loading-form .btn.is-loading {
    opacity: 0.8;
    pointer-events: none;
}

.ft-google-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(70, 130, 180, 0.1);
    color: var(--ft-primary);
    font-weight: 700;
}

.ft-summary-list {
    display: grid;
    gap: 0.9rem;
}

.ft-summary-item,
.ft-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ft-summary-item {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(20, 58, 92, 0.08);
}

.ft-total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 92, 0.12);
    font-size: 1rem;
}

.ft-sticky-card {
    position: static;
    top: auto;
}

.experience-slide {
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.experience-image-slide {
    overflow: hidden;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(8, 21, 34, 0.18);
}

.experience-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.experience-slide-media {
    height: 280px;
}

.experience-slide-media--hero {
    height: 420px;
}

.experience-slide-body {
    padding: 1.35rem;
    color: #fff;
}

.ft-slide-category {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.ft-slide-price {
    font-size: 1rem;
    color: #fff;
}

.experience-card-media {
    height: 240px;
}

.experience-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.experience-masonry-card {
    display: flex;
    flex-direction: column;
}

.experience-masonry-card--wide {
    grid-column: span 2;
}

.experience-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.experience-masonry-card .experience-card-media {
    height: 235px;
}

.experience-masonry-card--wide .experience-card-media {
    height: 265px;
}

.experience-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover {
    transform: translateY(-3px);
}

.experience-hero-carousel .carousel-inner {
    border-radius: 1.15rem;
}

.experience-hero-carousel .carousel-control-prev,
.experience-hero-carousel .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: calc(50% - 1.5rem);
    bottom: auto;
    border-radius: 50%;
    background: rgba(8, 21, 34, 0.38);
    backdrop-filter: blur(8px);
}

.experience-hero-carousel .carousel-control-prev {
    left: 1rem;
}

.experience-hero-carousel .carousel-control-next {
    right: 1rem;
}

.product-gallery-primary {
    height: 460px;
}

.product-gallery-secondary {
    height: 220px;
}

.product-note-card,
.product-why-card {
    background: linear-gradient(160deg, rgba(70, 130, 180, 0.14), rgba(255, 140, 0, 0.08));
}

.product-booking-card {
    top: auto;
    z-index: auto;
}

.product-like-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.88rem;
    border: 1px solid rgba(20, 58, 92, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ft-primary);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(8, 21, 34, 0.08);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-like-pill i {
    color: #ff6b6b;
    font-size: 0.82rem;
}

.product-like-pill:hover {
    transform: translateY(-1px);
    background: #fff7f7;
    border-color: rgba(255, 107, 107, 0.28);
}

.product-like-pill.is-liked {
    background: #fff1f1;
    border-color: rgba(255, 107, 107, 0.34);
    color: #9d3042;
}

.product-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.product-proof-item {
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: #f8fbfe;
    border: 1px solid rgba(20, 58, 92, 0.08);
}

.product-proof-item span {
    display: block;
    font-size: 0.72rem;
    color: var(--ft-muted);
    margin-bottom: 0.25rem;
}

.product-proof-item strong {
    font-size: 0.88rem;
}

.review-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.review-summary-card,
.review-poll-card {
    height: 100%;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.review-summary-card__eyebrow {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ft-muted);
}

.review-summary-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--ft-primary);
}

.review-summary-card p {
    color: var(--ft-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.review-poll-strength {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ft-primary);
}

.review-poll-meter {
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(20, 58, 92, 0.08);
    overflow: hidden;
}

.review-poll-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ft-primary) 0%, var(--ft-secondary) 62%, var(--ft-accent) 100%);
}

.review-poll-breakdown {
    display: grid;
    gap: 0.55rem;
}

.review-poll-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.84rem;
    color: var(--ft-muted);
}

.review-poll-row strong {
    color: var(--ft-ink);
}

.review-entry {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.review-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-tag,
.review-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.review-tag {
    background: rgba(20, 58, 92, 0.06);
    color: var(--ft-primary);
}

.review-tag--recommend,
.review-verified-badge {
    background: rgba(255, 140, 0, 0.12);
    color: #b35e00;
}

.review-metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.review-metric,
.review-empty-state {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.review-metric span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.76rem;
    color: var(--ft-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-metric strong {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--ft-primary);
}

.review-bar-list {
    display: grid;
    gap: 0.8rem;
}

.review-bar-row {
    display: grid;
    grid-template-columns: minmax(88px, 120px) 1fr auto;
    align-items: center;
    gap: 0.9rem;
}

.review-bar-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ft-ink);
}

.review-bar-track {
    height: 0.6rem;
    border-radius: 999px;
    background: rgba(20, 58, 92, 0.08);
    overflow: hidden;
}

.review-bar-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ft-primary) 0%, var(--ft-secondary) 62%, var(--ft-accent) 100%);
}

.review-bar-value {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ft-primary);
}

.review-empty-state strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ft-primary);
}

.review-empty-state p {
    color: var(--ft-muted);
    line-height: 1.6;
}

.product-step-badge {
    width: 42px;
    height: 42px;
}

.hero-slide-overlay {
    background: linear-gradient(180deg, rgba(8, 21, 34, 0.18) 0%, rgba(8, 21, 34, 0.56) 100%);
}

.home-product-media {
    height: 200px;
}

.card-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
}

.article-card-bg {
    transition: transform 0.35s ease;
}

.card:hover .article-card-bg {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 34, 0.08) 0%, rgba(8, 21, 34, 0.86) 100%);
}

.article-thumb {
    width: 76px;
    height: 76px;
    border-radius: 1rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.home-card-stats {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #143a5c;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(8, 21, 34, 0.18);
    border: 1px solid rgba(20, 58, 92, 0.08);
    backdrop-filter: blur(10px);
}

.home-card-stats__item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
}

.home-card-stats__item i {
    font-size: 0.72rem;
}

.home-card-stats__item--likes i {
    color: #ff6b6b;
}

.home-card-stats__item--views i {
    color: #4682b4;
}

.home-card-stats__divider {
    width: 1px;
    height: 0.85rem;
    background: rgba(20, 58, 92, 0.18);
}

.offer-page-hero {
    padding: 1.5rem 0 0.5rem;
}

.offer-page-hero__panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.2), transparent 36%),
        linear-gradient(120deg, rgba(20, 58, 92, 0.98) 0%, rgba(70, 130, 180, 0.95) 58%, rgba(255, 69, 0, 0.92) 100%);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(8, 21, 34, 0.16);
}

.offer-page-hero__panel::after {
    content: "";
    position: absolute;
    inset: auto -4rem -5rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.offer-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.offer-page-summary {
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.86);
}

.offer-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.83rem;
}

.offer-card {
    overflow: hidden;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(20, 58, 92, 0.08);
    box-shadow: 0 18px 44px rgba(8, 21, 34, 0.1);
}

.offer-card__media {
    position: relative;
    display: block;
    min-height: 290px;
    background: linear-gradient(135deg, rgba(20, 58, 92, 0.16), rgba(255, 69, 0, 0.12));
}

.offer-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card__discount {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 69, 0, 0.92);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.28);
}

.offer-card__body {
    padding: 1.45rem 1.45rem 1.55rem;
}

.offer-card__eyebrow {
    color: #5b6e84;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.offer-card__title {
    margin: 0.35rem 0 0;
    color: #143a5c;
    font-size: clamp(1.2rem, 1vw + 1rem, 1.8rem);
    line-height: 1.2;
}

.offer-card__expiry {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 1rem;
    background: rgba(20, 58, 92, 0.06);
    color: #143a5c;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.offer-card__expiry.is-expired {
    background: rgba(255, 69, 0, 0.08);
    color: #b63a12;
}

.offer-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.7rem;
}

.offer-card__price-old {
    color: #7d8896;
    font-size: 1rem;
    text-decoration: line-through;
}

.offer-card__price-current {
    color: #143a5c;
    font-size: clamp(1.55rem, 1vw + 1.3rem, 2.15rem);
    font-weight: 800;
    line-height: 1;
}

.offer-card__savings {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: #cc5f00;
    font-size: 0.82rem;
    font-weight: 700;
}

.offer-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.offer-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: #526274;
    font-size: 0.83rem;
}

.offer-empty-state {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.98));
    border: 1px solid rgba(20, 58, 92, 0.08);
    box-shadow: 0 18px 44px rgba(8, 21, 34, 0.08);
}

.holiday-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.78rem;
    border-radius: 999px;
    background: rgba(20, 58, 92, 0.08);
    color: #143a5c;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.holiday-section__title {
    margin-top: 0.8rem;
    color: #143a5c;
}

.holiday-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 1.4rem;
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.98));
    border: 1px solid rgba(20, 58, 92, 0.08);
    box-shadow: 0 18px 42px rgba(8, 21, 34, 0.08);
}

.holiday-card__date {
    align-self: flex-start;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #143a5c 0%, #4682b4 70%, #ff7a18 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.holiday-card__body {
    flex: 1;
    padding-top: 1rem;
}

.holiday-card__country {
    color: #5b6e84;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.holiday-card__title {
    margin: 0.45rem 0 0;
    color: #143a5c;
    font-size: 1.12rem;
    line-height: 1.3;
}

.holiday-card__local-name {
    margin: 0.45rem 0 0;
    color: #32475c;
    font-size: 0.92rem;
}

.holiday-card__meta,
.holiday-card__group {
    color: #627287;
    font-size: 0.84rem;
}

.holiday-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.holiday-detail-hero {
    border-radius: 1.75rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.2), transparent 34%),
        linear-gradient(120deg, rgba(20, 58, 92, 0.98) 0%, rgba(70, 130, 180, 0.95) 62%, rgba(255, 69, 0, 0.92) 100%);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(8, 21, 34, 0.16);
}

.holiday-detail-hero__kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.holiday-detail-hero__title {
    margin: 1rem 0 0.5rem;
    font-size: clamp(2rem, 2vw + 1.5rem, 3rem);
}

.holiday-detail-hero__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.holiday-detail-hero__summary {
    margin-top: 1rem;
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.88);
}

.holiday-detail-stat {
    display: inline-flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(20, 58, 92, 0.06);
    margin-bottom: 1rem;
}

.holiday-detail-stat__label {
    color: #627287;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.weather-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.78rem;
    border-radius: 999px;
    background: rgba(70, 130, 180, 0.1);
    color: #143a5c;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.weather-section__title {
    margin-top: 0.8rem;
    color: #143a5c;
}

.weather-section__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: #627287;
    font-size: 0.84rem;
}

.weather-section__legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.weather-card {
    height: 100%;
    padding: 1.2rem;
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 34%),
        linear-gradient(160deg, rgba(20, 58, 92, 0.98) 0%, rgba(70, 130, 180, 0.94) 58%, rgba(255, 69, 0, 0.88) 100%);
    color: #ffffff;
    box-shadow: 0 20px 44px rgba(8, 21, 34, 0.12);
}

.weather-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.weather-card__location {
    font-size: 1.05rem;
    font-weight: 700;
}

.weather-card__address {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.35;
}

.weather-card__icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.25rem;
}

.weather-card__temp {
    margin-top: 1rem;
    font-size: clamp(2rem, 1.8vw + 1.5rem, 2.7rem);
    font-weight: 800;
    line-height: 1;
}

.weather-card__conditions {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.weather-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.weather-card__stats span {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0.7rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

.weather-card__stats i {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
}

.weather-card__days {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.weather-day {
    padding: 0.65rem 0.4rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
}

.weather-day__name {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.weather-day__icon {
    margin: 0.35rem 0;
    font-size: 0.95rem;
}

.weather-day__temps {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
}

.weather-card__stale {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.76);
}

.ft-object-cover {
    object-fit: cover;
}

.ft-max-760 {
    max-width: 760px;
}

.ft-media-480 {
    height: 480px;
}

.ft-media-420 {
    height: 420px;
}

.ft-media-240 {
    height: 240px;
}

.ft-media-200 {
    height: 200px;
}

.ft-media-190 {
    height: 190px;
}

.ft-media-180 {
    height: 180px;
}

.transfer-hero {
    position: relative;
}

.transfer-hero__media {
    height: 480px;
}

.transfer-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 34, 53, 0.28), rgba(15, 34, 53, 0.62));
}

.about-hero__shell,
.developer-hero__shell {
    overflow: hidden;
}

.about-hero__content,
.developer-hero__shell {
    min-height: 100%;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 2vw, 2.5rem);
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.16), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.about-hero__media {
    height: 100%;
    min-height: 420px;
}

.about-section-intro {
    max-width: 760px;
}

.about-stat-grid,
.developer-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-stat-card,
.developer-stat-card {
    padding: 1rem;
    border-radius: 1rem;
    background: #f8fbfe;
    border: 1px solid rgba(20, 58, 92, 0.08);
}

.about-stat-card strong,
.developer-stat-card strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.05;
    color: var(--ft-primary);
}

.about-stat-card span,
.developer-stat-card span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--ft-muted);
}

.about-story-figure {
    border-radius: 1.35rem;
}

.about-timeline {
    display: grid;
    gap: 1rem;
}

.about-timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.about-timeline__index,
.architecture-step__badge {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ft-primary), var(--ft-secondary));
    color: #fff;
    font-weight: 700;
}

.about-quote {
    padding: 1.25rem 1.35rem;
    border-left: 4px solid var(--ft-accent);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 254, 1));
}

.about-service-card,
.developer-card,
.architecture-step,
.result-card,
.about-country-card {
    height: 100%;
    padding: 1.35rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    box-shadow: 0 16px 32px rgba(15, 34, 53, 0.08);
}

.about-service-card i,
.developer-card i,
.about-country-card__icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 0.95rem;
    background: rgba(70, 130, 180, 0.12);
    color: var(--ft-primary);
    font-size: 1.3rem;
}

.about-service-card h3,
.developer-card h3,
.architecture-step h3,
.about-country-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.55rem;
}

.about-service-card p,
.developer-card p,
.architecture-step p,
.result-card p,
.about-country-card p {
    margin: 0;
    color: var(--ft-muted);
    line-height: 1.68;
    font-size: 0.9rem;
}

.about-country-card {
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.12), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.about-country-card__list {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: var(--ft-muted);
    font-size: 0.88rem;
}

.about-country-card__list li + li {
    margin-top: 0.35rem;
}

.about-doc-card,
.policy-card,
.policy-section-card,
.policy-meta-card {
    height: 100%;
    padding: 1.35rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    box-shadow: 0 16px 32px rgba(15, 34, 53, 0.08);
}

.about-doc-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-doc-card__icon,
.policy-card__icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    background: rgba(70, 130, 180, 0.12);
    color: var(--ft-primary);
    font-size: 1.3rem;
}

.about-doc-card h3,
.policy-card h2,
.policy-section-card h2 {
    font-size: 1rem;
}

.about-doc-card p,
.policy-card p,
.policy-section-card p,
.policy-meta-card {
    color: var(--ft-muted);
    font-size: 0.9rem;
    line-height: 1.68;
}

.about-doc-card__status {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.about-doc-card__status.is-ready {
    background: rgba(25, 135, 84, 0.12);
    color: #146c43;
}

.about-doc-card__status.is-missing {
    background: rgba(108, 117, 125, 0.14);
    color: #495057;
}

.about-doc-modal .modal-content {
    border: 0;
    border-radius: 1.2rem;
    overflow: hidden;
}

.about-doc-modal__viewer {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: #f8fbfe;
}

.about-doc-modal__viewer iframe,
.about-doc-modal__viewer img {
    width: 100%;
    height: min(72vh, 880px);
    border: 0;
    object-fit: contain;
    background: #f8fbfe;
}

.about-doc-placeholder {
    min-height: 46vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(20, 58, 92, 0.04), rgba(70, 130, 180, 0.08));
}

.about-doc-placeholder i {
    font-size: 2rem;
    color: var(--ft-primary);
}

.policy-hero__shell {
    padding: clamp(1.5rem, 2vw, 2.5rem);
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.14), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.policy-meta-card__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ft-secondary);
}

.policy-link-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.policy-link-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 58, 92, 0.12);
    background: #ffffff;
    color: var(--ft-primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.policy-link-pill:hover,
.policy-link-pill:focus,
.policy-link-pill.is-current {
    border-color: rgba(70, 130, 180, 0.45);
    color: var(--ft-primary);
    background: rgba(70, 130, 180, 0.1);
}

.policy-inline-meta {
    display: grid;
    gap: 0.75rem;
}

.policy-inline-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ft-muted);
    font-size: 0.88rem;
}

.policy-inline-meta i {
    color: var(--ft-primary);
}

.policy-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--ft-muted);
    font-size: 0.9rem;
}

.policy-list li + li {
    margin-top: 0.65rem;
}

.account-hero-card {
    padding: clamp(1.5rem, 2vw, 2.5rem);
    background:
        radial-gradient(circle at top right, rgba(70, 130, 180, 0.12), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.account-summary-tile,
.account-booking-card,
.account-offer-card {
    border-radius: 1rem;
    border: 1px solid rgba(20, 58, 92, 0.08);
    background: #fff;
}

.account-summary-tile {
    padding: 1rem;
}

.account-summary-tile span {
    display: block;
    font-size: 0.8rem;
    color: var(--ft-muted);
}

.account-summary-tile strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ft-primary);
}

.account-booking-list,
.account-offer-list {
    display: grid;
    gap: 1rem;
}

.account-booking-card {
    padding: 1.25rem;
}

.account-booking-card.is-cancelled {
    background: linear-gradient(180deg, rgba(220, 53, 69, 0.03), rgba(255, 255, 255, 1));
}

.booking-status-pill,
.offer-discount-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.booking-status-pill.is-pending {
    background: rgba(255, 140, 0, 0.14);
    color: #b25e00;
}

.booking-status-pill.is-confirmed,
.booking-status-pill.is-completed {
    background: rgba(25, 135, 84, 0.12);
    color: #146c43;
}

.booking-status-pill.is-cancelled {
    background: rgba(220, 53, 69, 0.12);
    color: #b02a37;
}

.account-booking-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 58, 92, 0.08);
    font-size: 0.9rem;
    color: var(--ft-muted);
}

.account-empty-state {
    padding: 2rem 1rem;
    text-align: center;
}

.account-empty-state i {
    font-size: 2rem;
    color: var(--ft-primary);
    margin-bottom: 0.75rem;
}

.account-offer-card {
    padding: 1rem;
}

.account-offer-media {
    height: 180px;
    border-radius: 0.85rem;
    overflow: hidden;
}

.offer-discount-pill {
    background: rgba(255, 69, 0, 0.14);
    color: #c2410c;
}

.about-cta {
    padding: clamp(1.5rem, 2vw, 2.5rem);
    text-align: center;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, #143a5c 0%, #4682b4 56%, #ff8c00 100%);
    box-shadow: 0 22px 48px rgba(15, 34, 53, 0.18);
}

.developer-hero__shell {
    padding: clamp(1.5rem, 2vw, 2.5rem);
    background:
        radial-gradient(circle at top right, rgba(70, 130, 180, 0.14), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.architecture-step {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.result-card strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--ft-primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .home-card-stats {
        top: 0.65rem;
        right: 0.65rem;
        gap: 0.55rem;
        padding: 0.38rem 0.72rem;
        font-size: 0.68rem;
    }

    .offer-page-hero__panel {
        padding: 1.45rem;
        border-radius: 1.35rem;
    }

    .offer-card__media {
        min-height: 220px;
    }

    .offer-card__body {
        padding: 1.1rem 1.05rem 1.2rem;
    }

    .offer-card__expiry {
        white-space: normal;
    }

    .holiday-card {
        padding: 1rem;
    }

    .holiday-detail-hero {
        padding: 1.45rem;
        border-radius: 1.35rem;
    }

    .weather-card {
        padding: 1rem;
    }

    .weather-card__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .weather-card__days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lazy-bg {
    background-image: linear-gradient(135deg, rgba(20, 58, 92, 0.16), rgba(255, 140, 0, 0.1));
}

.hero-carousel-frame {
    height: min(78svh, 820px);
    min-height: 460px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

.carousel-item {
    background-color: transparent;
}

.offer-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.offer-scroll::-webkit-scrollbar {
    display: none;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@keyframes ftGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1199.98px) {
    .navbar-brand {
        max-width: 188px;
    }

    .brand-subtitle {
        display: none;
    }

    .search-shell {
        width: min(100%, 210px);
        max-width: 210px;
        flex-basis: 210px;
    }

    .experience-masonry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .search-shell {
        min-width: 100%;
        width: 100%;
        max-width: none;
        flex-basis: auto;
    }

    .navbar-brand {
        max-width: none;
    }

    .auth-label {
        display: none;
    }

    .utility-nav {
        gap: 0.4rem !important;
    }

    .ft-role-grid,
    .ft-stat-grid,
    .product-proof-grid,
    .review-summary-grid,
    .review-metric-strip {
        grid-template-columns: 1fr;
    }

    .hero-carousel-frame {
        height: 68svh;
        min-height: 420px;
    }

    .about-stat-grid,
    .developer-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-masonry-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .surface-card,
    .floating-actions a {
        box-shadow: 0 10px 24px rgba(15, 34, 53, 0.08);
    }

    .message-stack {
        position: static;
        top: auto;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 0.55rem;
    }

    .floating-actions a {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .ft-page-hero__shell,
    .experience-landing-shell,
    .ft-form-card,
    .ft-copy-card,
    .ft-sidecard,
    .ft-map-card,
    .ft-admin-panel {
        padding: 1.3rem;
    }

    .product-gallery-primary {
        height: 320px;
    }

    .product-gallery-secondary,
    .experience-slide-media,
    .experience-card-media {
        height: 210px;
    }

    .experience-masonry-card .experience-card-media,
    .experience-masonry-card--wide .experience-card-media {
        height: 220px;
    }

    .experience-slide-media--hero {
        height: 280px;
    }

    .ft-media-480,
    .transfer-hero__media {
        height: 320px;
    }

    .ft-media-420 {
        height: 280px;
    }

    .ft-media-240 {
        height: 200px;
    }

    .ft-media-200,
    .ft-media-190,
    .ft-media-180 {
        height: 170px;
    }

    .transfer-hero__overlay,
    .about-hero__content,
    .developer-hero__shell,
    .about-service-card,
    .about-doc-card,
    .account-hero-card,
    .developer-card,
    .architecture-step,
    .result-card,
    .policy-card,
    .policy-section-card,
    .policy-meta-card,
    .about-country-card,
    .about-cta {
        padding: 1.2rem;
    }

    .about-timeline__item {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .account-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-tag-row {
        gap: 0.4rem;
    }

    .review-bar-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .about-doc-modal__viewer iframe,
    .about-doc-modal__viewer img {
        height: min(60vh, 620px);
    }
}

@media (max-width: 575.98px) {
    .hero-carousel-frame {
        height: 62svh;
        min-height: 380px;
    }

    .ft-page-title {
        font-size: 1.9rem;
    }

    .experience-masonry-grid {
        grid-template-columns: 1fr;
    }

    .experience-masonry-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 360px) {
    .fs-4 {
        font-size: 1.1rem !important;
    }

    .fs-3 {
        font-size: 1.4rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-shell,
    .top-shell .navbar,
    .lazy-img,
    .back-to-top,
    .btn-brand,
    .ft-page-hero__shell,
    .experience-landing-shell {
        transition: none !important;
        animation: none !important;
    }

    .shimmer::before,
    .skeleton-line::before {
        animation: none !important;
    }
}
