html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--sf-font-body);
    text-rendering: optimizeLegibility;
    color: var(--sf-text);
    background: var(--sf-page-bg);
}

.sf-reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.sf-reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

html,
body {
    height: 100%;
    overflow-x: clip;
    max-width: 100%;
}

.sf-page {
    background: var(--sf-page-bg);
    overflow-x: clip;
    max-width: 100%;
}

.sf-page .container {
    max-width: var(--sf-layout-max);
}

/* Section Padding */
.sf-section {
    padding: 100px 0;
}

/* Navbar Global */
.sf-navbar-wrap {
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 0.5rem;
    max-width: 100%;
    overflow-x: clip;
}

.sf-nav-container {
    z-index: 1000;
    position: relative;
    max-width: 100%;
}

.sf-navbar {
    background: #ffffff;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px 0px;
    position: relative;
    min-width: 0;
}

.sf-brand {
    font-weight: 800;
    letter-spacing: 0.06em;
    min-width: 0;
}

@media (min-width: 768px) {
    .sf-navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        justify-content: initial;
    }

    .sf-brand {
        justify-self: start;
        grid-column: 1;
    }

    .sf-nav-links {
        justify-self: center;
        grid-column: 2;
    }

    .sf-navbar-end {
        justify-self: end;
        grid-column: 3;
    }
}

@media (max-width: 767px) {
    .sf-brand {
        flex: 1 1 auto;
    }
}

/* Keeps label + hover arrow from being squeezed/cropped by flex */
.sf-navbar-end .sf-nav-contact-btn {
    flex-shrink: 0;
    min-width: max-content;
    white-space: nowrap;
}

/* Framer logo PNG includes tagline under wordmark — hide bottom strip only */
.sf-brand-framer-wrap {
    display: block;
    line-height: 0;
}

.sf-brand-framer-img {
    display: block;
    width: 158px;
    max-width: min(140px, 50vw);
    height: auto;
    clip-path: inset(0 0 30% 0);
    margin-bottom: -10px;
    margin-left: 7px;
}

@media (max-width: 575px) {
    .sf-brand-framer-img {
        width: 132px;
        max-width: min(132px, 52vw);
        clip-path: inset(0 0 34% 0);
    }
}

.sf-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.sf-nav-links a {
    color: rgb(145 144 144);
    text-decoration: none;
    transition: color 0.28s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: transparent;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    height: 22px;
    line-height: 22px;
}

/* Default Gray Text */
.sf-nav-links a::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(145 144 144);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hover Blue Text */
.sf-nav-links a::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: -100%;
    color: var(--sf-primary);
    transition: transform 0.4s ease, top 0.4s ease;
}

/* Hover Effect */
.sf-nav-links a:hover::before {
    transform: translateY(100%);
    opacity: 0;
}

.sf-nav-links a:hover::after {
    top: 0;
}

/* Active tab: keep blue state and disable hover animation */
.sf-nav-links a.active {
    font-weight: 500;
}

.sf-nav-links a.active::before {
    opacity: 0;
    transform: translateY(100%);
    transition: none;
}

.sf-nav-links a.active::after {
    top: 0;
    color: var(--sf-primary);
    transition: none;
}

.sf-nav-links a.active:hover::before {
    opacity: 0;
    transform: translateY(100%);
}

.sf-nav-links a.active:hover::after {
    top: 0;
}

.sf-nav-links a:not(.active):hover::before {
    transform: translateY(100%);
    opacity: 0;
}

.sf-nav-links a:not(.active):hover::after {
    top: 0;
}

/* Mobile nav toggle + dropdown */
.sf-navbar-end {
    flex-shrink: 0;
}

.sf-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(0, 90, 141, 0.15);
    border-radius: 999px;
    background: #fff;
    color: var(--sf-primary);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sf-nav-toggle:hover,
.sf-nav-toggle:focus-visible {
    background: rgba(0, 90, 141, 0.06);
    border-color: rgba(0, 90, 141, 0.28);
    outline: none;
}

.sf-nav-toggle-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.sf-nav-mobile {
    margin-top: 0.55rem;
}

.sf-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: #fff;
    border-radius: 20px;
    padding: 0.65rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px 0px;
}

.sf-nav-mobile-links a {
    display: block;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.sf-nav-mobile-links a:hover,
.sf-nav-mobile-links a:focus-visible {
    background: rgba(0, 90, 141, 0.06);
    color: var(--sf-primary);
}

.sf-nav-mobile-links a.active {
    background: rgba(0, 90, 141, 0.08);
    color: var(--sf-primary);
    font-weight: 600;
}

.sf-nav-mobile-contact {
    margin-top: 0.15rem;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 12px 12px !important;
    padding-top: 0.85rem !important;
}

.sf-btn-primary {
    background: var(--sf-primary);
    color: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
}

.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 999px;
    background: var(--sf-primary);
    border-color: var(--sf-primary);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    min-height: 46px;
    padding: 0 1.5rem;
    margin-right: 0;
    box-sizing: border-box;
}

/* Bootstrap pairs .sf-btn-sm — balance horizontal padding + vertical center */
.sf-btn.sf-btn-sm {
    min-height: 52px;
    padding: 0 1.45rem;
    font-size: 0.82rem;
}

.sf-btn:hover {
    background: var(--sf-primary-hover);
    color: #fff;
}

/* Arrow hidden until hover/focus — flex parent keeps label centered; width avoids clipping "->" */
.sf-destinations-cta .arrow,
.sf-nav-contact-btn .arrow,
.btn-browse-all-activites .arrow,
.btn-learn-more .arrow,
.sf-why-cta .arrow,
.sf-faq-contact .arrow,
.sf-blog-cta .arrow {
    display: inline-block;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        opacity 0.22s ease,
        max-width 0.3s ease,
        margin-left 0.3s ease,
        transform 0.22s ease;
    transform: translateX(-6px);
    font-weight: 700;
    margin-left: 0;
}

.sf-destinations-cta:hover .arrow,
.sf-destinations-cta:focus-visible .arrow,
.sf-nav-contact-btn:hover .arrow,
.sf-nav-contact-btn:focus-visible .arrow,
.btn-browse-all-activites:hover .arrow,
.btn-browse-all-activites:focus-visible .arrow,
.btn-learn-more:hover .arrow,
.btn-learn-more:focus-visible .arrow,
.sf-why-cta:hover .arrow,
.sf-why-cta:focus-visible .arrow,
.sf-faq-contact:hover .arrow,
.sf-faq-contact:focus-visible .arrow,
.sf-blog-cta:hover .arrow,
.sf-blog-cta:focus-visible .arrow {
    opacity: 1;
    max-width: 3rem;
    margin-left: 0.4rem;
    transform: translateX(0);
}

.sf-destinations-cta,
.sf-nav-contact-btn,
.btn-browse-all-activites,
.btn-learn-more .sf-why-cta,
.sf-faq-contact,
.sf-blog-cta {
    overflow: visible;
}

.sf-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.sf-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* —— Luxury hero / destinations search (glass + ocean gradient) —— */
.sf-lux-search {
    width: min(100%, 680px);
    max-width: 680px;
    margin-top: clamp(1rem, 2.2vw, 1.35rem);
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.sf-lux-search__form {
    margin: 0;
}

.sf-lux-search--page {
    position: relative;
    width: 100%;
    max-width: min(42rem, 100%);
    margin-bottom: 1.75rem;
    margin-top: 0;
}

/* Hero: category chips — wrap on multiple lines, left-aligned with Explore Now */
.sf-hero-categories {
    padding-left: 7rem;
    margin-top: 8rem;
    max-width: 100%;
    overflow-x: hidden;
}

.sf-hero-categories .sf-hero-category-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    row-gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.sf-hero-categories .sf-hero-category-bar.sf-dest-category-bar {
    margin-top: 0;
    flex-wrap: wrap;
}

.sf-hero-categories .sf-hero-category-bar .sf-dest-category-pill {
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .sf-hero-categories .sf-hero-category-bar {
        gap: 0.45rem;
        row-gap: 0.5rem;
    }

    .sf-hero-categories .sf-hero-category-bar .sf-dest-category-pill {
        font-size: 0.8125rem;
        padding: 0.45rem 0.85rem;
    }
}

@media (max-width: 575px) {
    .sf-hero-categories {
        padding-left: 2rem;
        margin-top: 1.15rem;
    }

    .sf-hero-categories .sf-hero-category-bar {
        gap: 0.4rem;
        row-gap: 0.45rem;
    }

    .sf-hero-categories .sf-hero-category-bar .sf-dest-category-pill {
        font-size: 0.78rem;
        padding: 0.4rem 0.72rem;
    }
}

.sf-lux-search__shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    min-height: 68px;
    padding: 0.62rem 0.65rem 0.62rem 1.25rem;
    border-radius: 40px;
    border: none;
    overflow: visible;
    background: rgba(255, 255, 255, 0.52);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.12),
        0 10px 28px rgba(0, 90, 141, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .sf-lux-search__shell {
        background: rgba(255, 255, 255, 0.92);
    }
}

.sf-lux-search__row {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    gap: 0.65rem;
}

.sf-lux-search__grow {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}

.sf-lux-search__body {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.5rem;
}

.sf-lux-search__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    color: rgba(0, 90, 141, 0.55);
    font-size: 1.1rem;
    line-height: 1;
}

.sf-lux-search__field {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.1rem 0.35rem 0 0;
}

.sf-lux-search__input {
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.5rem 0.85rem 0.4rem 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #0f172a;
    line-height: 1.35;
}

.sf-lux-search__input::-webkit-search-decoration,
.sf-lux-search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.sf-lux-search__input::placeholder {
    color: rgba(0, 90, 141, 0.42);
    font-weight: 500;
}

.sf-lux-search__input:focus,
.sf-lux-search__input:focus-visible {
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.sf-lux-search__hints {
    margin: 0;
    padding-left: 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(15, 23, 42, 0.55);
    line-height: 1.35;
}

.sf-lux-search__hint {
    color: rgba(0, 90, 141, 0.72);
    text-decoration: none;
    transition: color 0.15s ease;
}

.sf-lux-search__hint:hover {
    color: var(--sf-primary);
}

.sf-lux-search__hint-sep {
    margin: 0 0.2rem;
    color: rgba(0, 90, 141, 0.35);
}

.sf-lux-search__btn {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: none;
    border-radius: 34px;
    margin: 0.2rem 0.35rem 0.2rem 0;
    padding: 0 1.35rem;
    min-height: 52px;
    min-width: 7.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(148deg, #22d3ee 0%, #0ea5e9 28%, #0284c7 55%, var(--sf-primary) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 28px rgba(0, 90, 141, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sf-lux-search__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -35%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 45%,
        transparent 68%
    );
    transform: skewX(-16deg) translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.sf-lux-search__btn:hover::after {
    transform: skewX(-16deg) translateX(200%);
}

.sf-lux-search__btn:hover {
    filter: brightness(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 14px 34px rgba(0, 90, 141, 0.4);
}

.sf-lux-search__btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.sf-lux-search__btn i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    opacity: 0.95;
}

.sf-lux-search__btn span {
    position: relative;
    z-index: 1;
}

.sf-lux-search__shell:focus-within {
    box-shadow:
        0 26px 56px rgba(15, 23, 42, 0.14),
        0 12px 32px rgba(0, 90, 141, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

@media (prefers-reduced-motion: reduce) {
    .sf-lux-search__btn::after {
        display: none;
    }
}

.sf-search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 60;
    background: #fff;
    border-radius: 22px;
    box-shadow:
        rgba(0, 0, 0, 0.12) 0 12px 32px 0,
        0 0 0 1px rgba(0, 90, 141, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.95);
    max-height: 320px;
    overflow-y: auto;
    padding: 0.45rem;
    scrollbar-width: none;
}

.sf-search-suggestions::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.sf-search-suggestions::-webkit-scrollbar-track {
    margin: 4px 0;
    background: rgba(236, 254, 255, 0.65);
    border-radius: 999px;
}

.sf-search-suggestions::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 40%, var(--sf-primary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background-clip: padding-box;
}

.sf-search-suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 45%, #0284c7 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-clip: padding-box;
}

.sf-search-suggestions::-webkit-scrollbar-corner {
    background: transparent;
}

.sf-search-suggestions[hidden] {
    display: none !important;
}

.sf-search-suggestions--lux {
    border: none;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border-radius: 24px;
    box-shadow:
        0 20px 44px rgba(15, 23, 42, 0.1),
        0 8px 20px rgba(0, 90, 141, 0.08);
}

.sf-search-suggestion-btn {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 12px;
    background: transparent;
    padding: 0.55rem 0.65rem;
    cursor: pointer;
    color: #0f172a;
    transition: background 0.15s ease;
}

.sf-search-suggestion-btn:hover,
.sf-search-suggestion-btn.is-active {
    background: #f1f5f9;
}

.sf-search-suggestion-main {
    flex: 1;
    min-width: 0;
}

.sf-search-suggestion-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.sf-search-suggestion-meta {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.15rem;
}


.sf-search-suggestions-empty {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    color: #64748b;
}

.sf-search-suggestion-footer {
    margin-top: 0.25rem;
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 12px 12px;
}

.sf-search-suggestion-footer .sf-search-suggestion-label {
    color: var(--sf-primary);
}

.sf-hero-content {
    position: relative;
    z-index: 10;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding-top: clamp(5.35rem, 11vh, 6.75rem);
    padding-bottom: 8.8rem;
    min-height: 0;
}

.sf-hero-copy {
    max-width: 700px;
    padding-left: 1.35rem;
    width: 100%;
    min-width: 0;
}

.sf-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 3.31rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--sf-primary);
    letter-spacing: -0.03em;
}

.sf-hero-line1,
.sf-hero-line2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    white-space: normal;
}

.sf-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 13px;
    background: var(--sf-primary);
    color: #fff;
    font-size: 3.5rem;
    line-height: 1;
    padding: 0.46rem 1rem 0.5rem;
}

.sf-hero-text {
    margin-top: 1rem;
    max-width: 620px !important;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4e5255;
}

.sf-hero-cta-row {
    margin-top: 1rem;
}

.sf-trust-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 3;
}

.sf-trust-container {
    max-width: 100%;
}

.sf-trustbar {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    padding: 0.9rem 1.2rem;
}

.sf-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
}

.sf-trust-item-border {
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.sf-trust-brand {
    min-height: 35px;
    margin-bottom: 0.45rem;
}

.sf-trust-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.sf-trust-logo--google {
    display: block;
}

.sf-trust-rating-line {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
}

.sf-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1;
}

.sf-stars-gold {
    color: #f5b000;
}

.sf-stars-tripadvisor {
    color: #00AF87;
}

.sf-star-empty {
    opacity: 0.35;
}

.sf-star-half {
    position: relative;
    display: inline-flex;
    width: 1em;
    height: 1em;
    line-height: 1;
    flex-shrink: 0;
}

.sf-star-half .bi-star-fill {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}

.sf-star-half .sf-star-empty {
    opacity: 0.35;
}

.sf-stars-trustpilot {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0;
}

.sf-tp-star-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    background: #00b67a;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    flex-shrink: 0;
}

.sf-tp-star-box.half {
    background: #d1d5db;
    position: relative;
    overflow: hidden;
}

.sf-tp-star-box.half::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #00b67a;
}

.sf-tp-star-box.empty {
    background: #d1d5db;
}

.sf-trust-score {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.2;
    color: #0f172a;
    white-space: nowrap;
}

.sf-trust-score strong {
    font-weight: 700;
}

.sf-trust-rating-suffix {
    font-weight: 400;
    color: #64748b;
}

.sf-tripadvisor-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.sf-tripadvisor-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.sf-trust-brand--trustpilot {
    gap: 0.35rem;
}

.sf-trust-tp-icon {
    flex-shrink: 0;
}

.sf-trust-tp-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #191919;
}

.sf-section {
    padding: 4rem 0;
}

.sf-section-muted {
    background: #f3f4f6;
}

.sf-section-destinations {
    background: var(--sf-page-bg);
    padding-top: 3.25rem;
    padding-bottom: 4rem;
}

.sf-destinations-intro {
    max-width: 38rem;
}

.sf-destinations-title {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.65rem;
}

.sf-destinations-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 36rem;
}

.sf-destinations-cta {
    margin-top: 0.15rem;
}

.sf-section-title {
    margin: 0 8px 1rem;
    font-size: 2.8rem;
    font-weight: 750;

}

.sf-section-subtitle {
    margin: 0 8px;
    color: var(--sf-text-muted);
    font-size: 0.95rem;
}

.sf-card:not(.sf-card-destination),
.sf-activity-card,
.sf-feature-card,
.sf-testimonial-card,
.sf-blog-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.sf-card:not(.sf-card-destination):hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.14);
}

/* Destination: rounded photo only; copy sits on section background (no white card shell) */
.sf-card-destination {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.sf-card-destination:hover {
    transform: none;
}

.sf-card:not(.sf-card-destination) {
    transition: all 0.35s ease;
}

.sf-card-destination .sf-card-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .sf-card-destination:hover .sf-card-image-wrap {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.13);
} */

/* Hero background image styling */
.sf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.sf-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.sf-card-destination .sf-card-image {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 1.25rem;
    display: block;
}

/* .sf-card-destination:hover .sf-card-image {
    transform: scale(1.06);
} */

.sf-card-duration-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.1);
}

.sf-card-image-wrap:hover .sf-card-duration-badge,
.sf-card-destination:hover .sf-card-duration-badge {
    opacity: 1;
    transform: translateY(0);
}

.sf-card-duration-icon {
    flex-shrink: 0;
    color: #64748b;
}

.sf-card-body {
    padding: 1rem 1rem 1.15rem;
    background: #fff;
}

.sf-card-destination .sf-card-body {
    background: transparent;
    padding: 1rem 0 0;
}

/* Below image: price → title (largest) → location — matches reference card */
.sf-card-destination .sf-card-price-row {
    margin: 0 0 0.4rem;
    font-size: 0.93rem;
    line-height: 1.35;
}

.sf-card-destination .sf-card-price-value {
    font-weight: 700;
    color: #0f172a;
}

.sf-card-destination .sf-card-price-suffix {
    font-size: 0.8rem;
    font-weight: 400;
    color: #94a3b8;
}

.sf-card-destination .sf-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.sf-card-destination .sf-card-location {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.sf-card-destination .sf-card-pin {
    flex-shrink: 0;
    color: #94a3b8;
}

.sf-card-price-row {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.sf-card-price-value {
    font-weight: 700;
    color: #0f172a;
}

.sf-card-price-suffix {
    font-size: 0.82rem;
    font-weight: 400;
    color: #94a3b8;
}

.sf-card-title {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
}

.sf-card-location {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.sf-card-pin {
    flex-shrink: 0;
    color: #94a3b8;
}

/* —— Travel Stories: #F6F9FF, cards ~350×525 (2:3), 22px gap, overlay + text per Framer ref —— */
.sf-section-stories {
    background: var(--sf-stories-bg);
    overflow-x: hidden;
    padding-top: 6.5rem;
    padding-bottom: 2.75rem;
}

.sf-stories-intro {
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .sf-stories-intro {
        margin-bottom: 3rem;
    }
}

.sf-stories-heading {
    margin-bottom: 0.5rem;
    font-size: clamp(2.875rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.sf-stories-subheading {
    max-width: 36rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.55;
    color: #64748b;
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
}

/* Title stays in container; strip breaks out full viewport for overflow slider */
.sf-stories-slider-outer--fullbleed {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    padding-inline: 0;
    box-sizing: border-box;
}

.sf-stories-swiper {
    overflow: hidden;
    padding-bottom: 0.15rem;
    /* Edge peek: ~16–20px from viewport; keeps overflow strip like reference */
    padding-inline: clamp(0.75rem, 2.2vw, 1.25rem);
    box-sizing: border-box;
}

/* Card width: 300–350px (height via 2:3 on .sf-story-media ≈ 450–525px) */
.sf-stories-swiper .swiper-slide {
    width: var(--sf-stories-card-w);
    height: auto;
}

@media (max-width: 575px) {
    .sf-stories-swiper .swiper-slide {
        width: clamp(260px, 82vw, 300px);
    }
}

.sf-stories-swiper .sf-story-card {
    width: 100%;
}

.sf-story-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.sf-stories-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-bottom: 0.25rem;
    padding-inline: 1rem;
}

.sf-stories-pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
    position: relative;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto !important;
    background: #dde8f4;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.sf-stories-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    background: #9eb9d6;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sf-stories-pagination .swiper-pagination-bullet-active {
    background: var(--sf-primary, #005b8e);
    transform: scale(1.18);
}

.sf-story-media {
    position: relative;
    width: 100%;
    /* 2:3 portrait (e.g. 330×495, 350×525) — matches second reference */
    aspect-ratio: 2 / 3;
    border-radius: var(--sf-stories-card-radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.sf-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
}

.sf-story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: var(--sf-stories-overlay-pad);
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.38) 38%,
            rgba(0, 0, 0, 0) 62%);
    pointer-events: none;
}

.sf-story-meta {
    margin: 0 0 var(--sf-stories-loc-to-head);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--sf-stories-loc-size);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.sf-story-pin {
    flex-shrink: 0;
    opacity: 0.95;
    width: 14px;
    height: 14px;
}

.sf-story-headline {
    margin: 0;
    font-size: var(--sf-stories-headline-size);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sf-about-img,
.sf-activity-image,
.sf-testimonial-image,
.sf-blog-image,
.sf-gallery-image {
    width: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
}

.sf-about-img {
    height: 160px;
}

.sf-activity-image {
    height: 180px;
    border-radius: 0;
}

.sf-testimonial-cover,
.sf-testimonial-image,
.sf-blog-image {
    height: 168px;
    border-radius: 0;
}

.sf-gallery-image {
    height: 112px;
}

.sf-gallery-section {
    overflow: hidden;
}

.sf-gallery-marquee {
    display: grid;
    gap: 0.65rem;
}

.sf-gallery-row {
    width: 100%;
    overflow: hidden;
}

.sf-gallery-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-inline: 0.65rem;
    animation: sf-gallery-slide-left 36s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

.sf-gallery-marquee.is-active .sf-gallery-track {
    animation-play-state: running;
}

.sf-gallery-row--right .sf-gallery-track {
    animation-direction: reverse;
}

.sf-gallery-row--left .sf-gallery-track {
    animation-duration: 34s;
}

.sf-gallery-item {
    flex: 0 0 auto;
    width: clamp(120px, 10vw, 190px);
    height: clamp(90px, 7.2vw, 145px);
    border-radius: 0.75rem;
    overflow: hidden;
}

.sf-gallery-item--alt {
    height: clamp(82px, 6.8vw, 132px);
}

.sf-gallery-item:nth-child(6n + 1) {
    width: clamp(92px, 7.2vw, 130px);
    height: clamp(140px, 11.2vw, 208px);
}

.sf-gallery-item:nth-child(6n + 2) {
    width: clamp(150px, 12.8vw, 248px);
    height: clamp(92px, 7vw, 132px);
}

.sf-gallery-item:nth-child(6n + 3) {
    width: clamp(120px, 9.5vw, 170px);
    height: clamp(132px, 10.2vw, 194px);
}

.sf-gallery-item:nth-child(6n + 4) {
    width: clamp(136px, 15vw, 225px);
    height: clamp(90px, 6.8vw, 126px);
}

.sf-gallery-item:nth-child(6n + 5) {
    width: clamp(110px, 8.6vw, 160px);
    height: clamp(104px, 8.2vw, 158px);
}

.sf-gallery-item:nth-child(6n + 6) {
    width: clamp(132px, 10.6vw, 204px);
    height: clamp(84px, 6.5vw, 122px);
}

.sf-gallery-item--alt:nth-child(6n + 1) {
    width: clamp(148px, 12.2vw, 236px);
    height: clamp(90px, 7vw, 132px);
}

.sf-gallery-item--alt:nth-child(6n + 2) {
    width: clamp(98px, 7.8vw, 140px);
    height: clamp(134px, 10.4vw, 196px);
}

.sf-gallery-item--alt:nth-child(6n + 3) {
    width: clamp(132px, 10.4vw, 200px);
    height: clamp(86px, 6.6vw, 122px);
}

.sf-gallery-item--alt:nth-child(6n + 4) {
    width: clamp(112px, 8.8vw, 162px);
    height: clamp(120px, 9.2vw, 178px);
}

.sf-gallery-item--alt:nth-child(6n + 5) {
    width: clamp(162px, 13.4vw, 256px);
    height: clamp(92px, 7vw, 134px);
}

.sf-gallery-item--alt:nth-child(6n + 6) {
    width: clamp(122px, 9.8vw, 188px);
    height: clamp(88px, 6.9vw, 126px);
}

.sf-gallery-marquee-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes sf-gallery-slide-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

@media (max-width: 767px) {

    .sf-gallery-item,
    .sf-gallery-item--alt {
        width: clamp(112px, 32vw, 170px) !important;
        height: clamp(82px, 23vw, 124px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-gallery-track {
        animation: none !important;
        transform: none !important;
    }
}

.sf-activity-body,
.sf-testimonial-body,
.sf-blog-body {
    padding: 0.9rem;
}

.sf-activity-body h3,
.sf-blog-body h3,
.sf-feature-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
}

.sf-activity-body p,
.sf-blog-body p,
.sf-feature-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.sf-blog-date,
.sf-testimonial-meta {
    color: #94a3b8;
    font-size: 0.75rem;
}

.sf-testimonial-title {
    margin: 0 0 0.35rem;
    font-weight: 600;
}

.sf-testimonial-text {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
}

.sf-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
}

.sf-stat-label {
    font-size: 0.72rem;
    color: #64748b;
}

.sf-faq-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.sf-faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 320px) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.sf-faq-intro {
    padding-top: 0.1rem;
}

.sf-faq-title {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 2vw, 2.95rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #0f172a;
}

.sf-faq-subtitle {
    margin: 0 0 1.35rem;
    max-width: 19rem;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.55;
}

.sf-faq-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

.sf-faq-contact {
    min-width: 92px;
}

.sf-faq-load-more {
    display: inline-flex;
    margin-top: 0;
    background: transparent;
    color: var(--sf-navy, #0b2545);
    border: 2px solid var(--sf-navy, #0b2545);
    cursor: pointer;
    font-family: inherit;
}

.sf-faq-load-more:hover,
.sf-faq-load-more:focus-visible {
    background: var(--sf-navy, #0b2545);
    color: #fff;
}

.sf-faq-load-more.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.sf-faq-accordion {
    display: grid;
    gap: 0.9rem;
}

.sf-faq-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.78rem;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sf-faq-card:hover {
    border-color: #d1d5db;
}

.sf-faq-card.is-open {
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.sf-faq-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.95rem 1.15rem;
    text-align: left;
    cursor: pointer;
}

.sf-faq-question {
    font-size: clamp(1.1rem, 0.35vw, 1.7rem);
    line-height: 1.2;
    font-weight: 600;
    color: #0f172a;
}

.sf-faq-icon {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 1px solid #0f172a;
    position: relative;
    flex-shrink: 0;
}

.sf-faq-icon::before,
.sf-faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 1.4px;
    background: #0f172a;
    transform: translate(-50%, -50%);
}

.sf-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.sf-faq-card.is-open .sf-faq-icon {
    border-color: var(--sf-navy);
    background: var(--sf-navy);
}

.sf-faq-card.is-open .sf-faq-icon::before {
    background: #fff;
}

.sf-faq-card.is-open .sf-faq-icon::after {
    opacity: 0;
}

.sf-faq-answer-wrap {
    padding: 0 1.15rem 1rem;
}

.sf-faq-answer {
    margin: 0;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 52ch;
}

@media (max-width: 991px) {
    .sf-faq-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sf-faq-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .sf-faq-actions {
        flex-wrap: wrap !important;
    }

    .sf-faq-contact,
    .sf-faq-load-more {
        flex: 1 1 auto;
        min-width: 0;
    }
}

.sf-newsletter-section {
    padding-top: 0.25rem;
    padding-bottom: 2.5rem;
}

.sf-newsletter-card {
    background: #fff;
    border-radius: 1.45rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(1.4rem, 3.4vw, 3.2rem);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
    border: 1px solid #edf1f6;
}

.sf-newsletter-title {
    margin: 0 0 0.72rem;
    font-size: clamp(1.9rem, 3vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.sf-newsletter-subtitle {
    margin: 0 0 1.35rem;
    color: #667085;
    font-size: 0.97rem;
    line-height: 1.6;
    max-width: 40rem;
}

.sf-newsletter-form {
    max-width: 520px;
    gap: 0.65rem;
}

.sf-newsletter-form .form-control {
    border-radius: 999px;
    border: 1px solid #d7dee8;
    height: 44px;
    font-size: 0.86rem;
    padding: 0.6rem 1rem;
}

.sf-btn-dark {
    border-radius: 999px;
    background: var(--sf-primary);
    color: #fff;
    border: 1px solid var(--sf-primary);
    padding: 0.56rem 1.22rem;
    font-size: 0.8rem;
    font-weight: 600;
    height: 44px;
    min-width: 96px;
}

.sf-btn-dark:hover {
    background: var(--sf-primary-hover);
    border-color: var(--sf-primary-hover);
    color: #fff;
}

/* --- Destinations Page (hero + intro card + categories) --- */
/* Do not use .sf-hero here: it forces min-height:100vh + overflow:hidden and overlaps content when the viewport height shrinks (e.g. DevTools open). */
.sf-dest-page-top {
    position: relative;
    z-index: 0;
    overflow: visible;
}

.sf-dest-main-panel {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.sf-dest-hero-wrap {
    position: relative;
    background: var(--sf-page-bg);
    padding-top: clamp(4.5rem, 10vw, 5.75rem);
}

.sf-dest-hero-banner {
    position: relative;
    min-height: clamp(340px, 48vh, 520px);
    overflow: hidden;
    border-radius: 0 0 clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px);
}

.sf-dest-hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 38%;
}

.sf-dest-hero-banner-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sf-dest-hero-banner-fade--bottom {
    background: linear-gradient(#f5f8ff00 0%, #f6f9ff 100%);
}

.sf-dest-hero-stack {
    position: relative;
    z-index: 3;
    margin-top: clamp(-4.5rem, -5vw, -1.75rem);
    padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
    max-width: 100%;
    overflow-x: hidden;
}

.sf-dest-intro-card {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    flex-wrap: wrap;
    justify-content: space-between;
    background: #ffffff;
    border-radius: clamp(22px, 3vw, 32px);
    padding: clamp(1.5rem, 3.2vw, 2.65rem) clamp(1.35rem, 3vw, 2.75rem);
}

.sf-dest-intro-card__text {
    flex: 1 1 280px;
    max-width: 38rem;
}

.sf-dest-intro-card__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
}

.sf-dest-intro-card__lead {
    margin: 0;
    font-size: clamp(0.94rem, 1.25vw, 1.05rem);
    line-height: 1.65;
    color: var(--sf-text-muted);
}

.sf-dest-intro-card__figure {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.sf-dest-intro-card__figure-grid {
    border-radius: clamp(16px, 2vw, 22px);
    padding: clamp(0.65rem, 1.5vw, 1rem);
    background-color: rgba(0, 90, 141, 0.04);
    background-image:
        linear-gradient(rgba(0, 90, 141, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 90, 141, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
}

.sf-dest-intro-card__figure-img {
    display: block;
    width: clamp(160px, 26vw, 260px);
    height: auto;
    border-radius: 12px;
}

.sf-dest-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: clamp(1.35rem, 3vw, 2rem);
    padding: 0 2px;
}

.sf-dest-category-pill {
    appearance: none;
    display: inline-block;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: var(--sf-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.52rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.sf-dest-category-pill:hover {
    border-color: rgba(0, 90, 141, 0.35);
    box-shadow: 0 4px 14px rgba(0, 90, 141, 0.08);
}

.sf-dest-category-pill.is-active {
    background: var(--sf-primary);
    color: #ffffff;
    border-color: var(--sf-primary);
    box-shadow: none;
}

.sf-dest-search-hint {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
}

.sf-dest-search-clear {
    color: var(--sf-primary);
    font-weight: 600;
    text-decoration: none;
}

.sf-dest-search-clear:hover {
    text-decoration: underline;
}

.sf-dest-results-block {
    margin-bottom: 0.5rem;
}

.sf-dest-results-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.sf-dest-results-sub {
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
}

.sf-dest-place-card {
    color: inherit;
    display: block;
    height: 100%;
}

.sf-dest-place-card-inner {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sf-dest-place-card:hover .sf-dest-place-card-inner {
    box-shadow: 0 16px 40px rgba(0, 90, 141, 0.12);
    transform: translateY(-2px);
}

.sf-dest-place-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.sf-dest-place-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-dest-place-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sf-dest-place-badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sf-primary);
    margin-bottom: 0.35rem;
}

.sf-dest-place-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.sf-dest-place-excerpt {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0.65rem;
    flex: 1;
}

.sf-dest-place-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sf-primary);
}

.sf-dest-packages-fallback {
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.sf-dest-empty {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px dashed #cbd5e1;
}

.sf-dest-empty-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--sf-primary);
}

@media (max-width: 767px) {
    .sf-lux-search__shell {
        border-radius: 28px;
        padding: 0.65rem 0.65rem 0.7rem;
        min-height: 0;
    }

    .sf-lux-search__row {
        flex-direction: column;
        align-items: stretch;
    }

    .sf-lux-search__btn {
        width: 100%;
        margin: 0.35rem 0 0;
        min-height: 48px;
        border-radius: 22px;
    }

    .sf-lux-search {
        width: 100%;
        max-width: 100%;
    }

    /* Home hero: narrower search bar with side breathing room */
    .sf-hero .sf-lux-search {
        width: min(100%, 26rem);
        max-width: calc(100% - 1.5rem);
        margin-left: 0;
        margin-right: auto;
    }

    /* Home + Destinations + Visa: compact inline search on small screens */
    .sf-hero .sf-lux-search,
    .sf-lux-search--page,
    .sf-visa-framer-search {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
        width: min(100%, 26rem);
        max-width: calc(100% - 1.5rem);
    }

    .sf-hero .sf-lux-search__shell,
    .sf-lux-search--page .sf-lux-search__shell,
    .sf-visa-framer-search .sf-lux-search__shell {
        min-height: 46px;
        padding: 0.32rem 0.35rem 0.32rem 0.85rem;
        border-radius: 999px;
    }

    .sf-hero .sf-lux-search__row,
    .sf-lux-search--page .sf-lux-search__row,
    .sf-visa-framer-search .sf-lux-search__row {
        flex-direction: row;
        align-items: center;
    }

    .sf-hero .sf-lux-search__body,
    .sf-lux-search--page .sf-lux-search__body,
    .sf-visa-framer-search .sf-lux-search__body {
        min-height: 1.85rem;
    }

    .sf-hero .sf-lux-search__icon,
    .sf-lux-search--page .sf-lux-search__icon,
    .sf-visa-framer-search .sf-lux-search__icon {
        width: 1.45rem;
        height: 1.45rem;
        font-size: 0.88rem;
    }

    .sf-hero .sf-lux-search__input,
    .sf-lux-search--page .sf-lux-search__input,
    .sf-visa-framer-search .sf-lux-search__input {
        font-size: 0.84rem;
    }

    .sf-hero .sf-lux-search__btn,
    .sf-lux-search--page .sf-lux-search__btn,
    .sf-visa-framer-search .sf-lux-search__btn {
        width: auto;
        min-width: 4.25rem;
        min-height: 36px;
        margin: 0;
        padding: 0 0.75rem;
        font-size: 0.78rem;
        border-radius: 999px;
    }

    .sf-navbar {
        padding: 10px 14px;
    }

    /* Contact is in the mobile menu — hide header CTA to prevent overflow */
    .sf-navbar-end .sf-nav-contact-btn {
        display: none !important;
    }

    .sf-nav-toggle {
        width: 2.35rem;
        height: 2.35rem;
    }
}

.sf-dest-page-list {
    padding-top: clamp(0.65rem, 2vw, 1.15rem);
    padding-bottom: 4.25rem;
    margin-top: 0;
}

.sf-dest-page-list .row {
    margin-top: 0 !important;
    row-gap: 1.5rem;
}

.sf-dest-page-list .row>* {
    margin-top: 0 !important;
}

/* Prevent AOS hidden state from leaving blank space on destinations cards */
#destinations-listing [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.sf-dest-page-head {
    margin-bottom: 2rem;
}

.sf-dest-page-head-title {
    margin-bottom: 0.7rem;
}

.sf-dest-page-head-subtitle {
    max-width: 50rem;
    margin-inline: auto;
}

.sf-dest-faq-section {
    padding-top: 1rem !important;
    padding-bottom: 2.25rem !important;
}

@media (max-height: 820px) {
    .sf-dest-hero-banner {
        min-height: clamp(220px, 34vh, 360px);
    }

    .sf-dest-hero-stack {
        margin-top: -0.75rem;
        padding-bottom: 0.65rem;
    }

    .sf-dest-category-bar {
        margin-top: 0.85rem;
    }

    .sf-dest-page-list {
        padding-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .sf-dest-page-list {
        padding-top: 0.5rem;
    }

    .sf-dest-hero-banner-img {
        object-position: 44% 36%;
    }

    .sf-dest-intro-card {
        flex-direction: column;
        align-items: stretch;
    }

    .sf-dest-intro-card__figure {
        justify-content: flex-start;
    }

    .sf-dest-category-bar {
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: hidden;
        row-gap: 0.5rem;
        gap: 0.45rem;
        padding-bottom: 0;
    }

    .sf-dest-category-bar .sf-dest-category-pill {
        flex-shrink: 0;
        font-size: 0.8125rem;
        padding: 0.45rem 0.85rem;
    }
}

@media (max-width: 575px) {
    .sf-dest-hero-stack .sf-dest-category-bar {
        gap: 0.4rem;
        row-gap: 0.45rem;
    }

    .sf-dest-hero-stack .sf-dest-category-bar .sf-dest-category-pill {
        font-size: 0.78rem;
        padding: 0.4rem 0.72rem;
    }

    .sf-lux-search--page {
        margin-bottom: 1rem;
    }
}

.sf-newsletter-media {
    position: relative;
    background: #f5f9fd;
    border-radius: 1.2rem;
    min-height: 290px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.8rem 0.8rem 0;
}

.sf-newsletter-photo {
    width: min(100%, 300px);
    height: auto;
    object-fit: contain;
}

.sf-newsletter-badge {
    position: absolute;
    right: 0.1rem;
    bottom: 0.2rem;
    background: #fff;
    border-radius: 0.9rem;
    padding: 0.72rem 0.9rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.sf-country-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 0.3rem;
    color: #0f172a;
}

.sf-newsletter-badge p:last-child {
    font-size: 0.82rem;
    color: #64748b;
}

.sf-footer {
    color: #334155;
    padding: 3rem 0 0;
}

.sf-footer-shell {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 5rem);
}

@media (min-width: 992px) {
    .sf-footer-shell {
        width: 70%;
        padding-inline: 0;
    }

    /* Custom column proportions (sum to 100%) for balanced alignment */
    .sf-footer-main .sf-footer-brand-col {
        flex: 0 0 auto;
        width: 24%;
    }

    .sf-footer-main .sf-footer-link-col {
        flex: 0 0 auto;
        width: 13%;
    }

    .sf-footer-main .sf-footer-contact-col {
        flex: 0 0 auto;
        width: 27%;
    }

    .sf-footer-main .sf-footer-map-col {
        flex: 0 0 auto;
        width: 23%;
    }
}

.sf-footer-main {
    padding-bottom: 1.9rem;
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.35rem;
}

@media (min-width: 768px) {
    .sf-footer-main {
        --bs-gutter-x: 2rem;
    }
}

@media (min-width: 992px) {
    .sf-footer-main {
        --bs-gutter-x: 2.75rem;
    }
}

@media (min-width: 1200px) {
    .sf-footer-main {
        --bs-gutter-x: 3.25rem;
    }
}

/* Extra separation between brand block and link columns on large screens */
@media (min-width: 992px) {
    .sf-footer-brand-col {
        padding-right: clamp(0.5rem, 2vw, 1.25rem);
    }
}

.sf-footer-brand-col {
    max-width: 100%;
}

.sf-footer-logo {
    display: block;
    width: 158px;
    max-width: min(158px, 52vw);
    height: auto;
}

.sf-footer-about {
    max-width: 21rem;
}

.sf-footer-social {
    margin-top: 1.15rem;
}

.sf-footer-social-label {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
}

.sf-footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.sf-footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #e3f1f9;
    color: var(--sf-primary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sf-footer-social-icons a:hover {
    background: var(--sf-primary);
    color: #fff;
    transform: translateY(-1px);
}

.sf-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-footer-contact-list li {
    margin-bottom: 0;
}

.sf-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    color: #5b6779;
    font-size: 0.87rem;
    line-height: 1.55;
}

.sf-footer-contact-item:last-child {
    margin-bottom: 0;
}

.sf-footer-contact-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #eef4f8;
    color: #475569;
    font-size: 0.95rem;
    margin-top: 0.05rem;
}

.sf-footer-contact-text {
    padding-top: 0.2rem;
}

.sf-footer-contact-text a {
    color: #5b6779;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sf-footer-contact-text a:hover {
    color: var(--sf-primary);
}

.sf-footer-map {
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--sf-border, #e2e8f0);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 991.98px) {
    .sf-footer-map {
        height: 220px;
    }
}

.sf-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Floating WhatsApp button ── */
.sf-wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-wa-float:hover,
.sf-wa-float:focus {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.sf-wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: sfWaPulse 2.2s infinite;
}

@keyframes sfWaPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 575.98px) {
    .sf-wa-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-wa-float::after {
        animation: none;
    }
}

/* ── Static content pages (Support, Services, Terms, Privacy) ── */
.sf-page-hero {
    position: relative;
    color: #fff;
    background:
        radial-gradient(1200px 400px at 80% -10%, rgba(122, 184, 212, 0.28), transparent 60%),
        linear-gradient(120deg, var(--sf-brand-navy-dark, #003d5c), var(--sf-brand-navy, #005a8d));
    /* Clear the fixed floating navbar */
    padding-top: clamp(7rem, 12vw, 9rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.sf-page-hero__inner {
    max-width: 760px;
    margin-inline: auto;
    padding-inline: 1.25rem;
    position: relative;
    z-index: 1;
}

.sf-page-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sf-brand-sky, #add2e4);
    margin-bottom: 0.75rem;
}

.sf-page-hero__title {
    font-family: var(--sf-font-display, 'Urbanist', sans-serif);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 0.9rem;
}

.sf-page-hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Rich-text content pages (Terms, Privacy, Services, Support body) */
.sf-page-prose {
    color: var(--sf-text, #334155);
    font-size: 1rem;
    line-height: 1.8;
}

.sf-page-prose > *:first-child {
    margin-top: 0;
}

.sf-page-prose h2 {
    font-family: var(--sf-font-display, 'Urbanist', sans-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sf-text-heading, #0f172a);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.sf-page-prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sf-text-heading, #0f172a);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.sf-page-prose h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sf-text-heading, #0f172a);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.sf-page-prose p,
.sf-page-prose ul,
.sf-page-prose ol {
    color: var(--sf-text-muted, #475569);
    margin-bottom: 1rem;
}

.sf-page-prose ul,
.sf-page-prose ol {
    padding-left: 1.3rem;
}

.sf-page-prose li {
    margin-bottom: 0.45rem;
}

.sf-page-prose a {
    color: var(--sf-primary);
    text-decoration: underline;
}

.sf-page-prose a:hover {
    color: var(--sf-primary-hover);
}

.sf-page-prose strong {
    color: var(--sf-text-heading, #0f172a);
}

.sf-support-card,
.sf-service-card {
    background: #fff;
    border: 1px solid var(--sf-border, #e2e8f0);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.sf-support-card:hover,
.sf-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 90, 141, 0.14);
    border-color: var(--sf-brand-sky-dark, #7ab8d4);
}

.sf-support-card__icon,
.sf-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--sf-brand-sky-light, #d6edf6);
    color: var(--sf-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sf-support-card__title,
.sf-service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sf-text-heading, #0f172a);
    margin-bottom: 0.5rem;
}

.sf-support-card__text,
.sf-service-card__text {
    color: var(--sf-text-muted, #64748b);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.sf-support-card__link,
.sf-service-card__link {
    color: var(--sf-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.sf-support-card__link:hover,
.sf-service-card__link:hover {
    color: var(--sf-primary-hover);
    text-decoration: underline;
}

.sf-support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--sf-text-muted, #64748b);
    font-size: 0.95rem;
    background: var(--sf-brand-sky-bg, #f6f9ff);
    border: 1px solid var(--sf-border, #e2e8f0);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    width: fit-content;
    margin-inline: auto;
}

.sf-support-accordion .accordion-item {
    border: 1px solid var(--sf-border, #e2e8f0);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.sf-support-accordion .accordion-button {
    font-weight: 600;
    color: var(--sf-text-heading, #0f172a);
    background: #fff;
}

.sf-support-accordion .accordion-button:not(.collapsed) {
    color: var(--sf-primary);
    background: var(--sf-brand-sky-bg, #f6f9ff);
    box-shadow: none;
}

.sf-support-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 90, 141, 0.15);
}

.sf-service-cta {
    background: var(--sf-brand-sky-bg, #f6f9ff);
    border: 1px solid var(--sf-border, #e2e8f0);
    border-radius: 18px;
    padding: 2.5rem 1.5rem;
}

.sf-legal {
    color: var(--sf-text, #0f172a);
    font-size: 0.98rem;
    line-height: 1.75;
}

.sf-legal__intro {
    font-size: 1.05rem;
    color: var(--sf-text-muted, #64748b);
    margin-bottom: 2rem;
}

.sf-legal h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sf-text-heading, #0f172a);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.sf-legal p,
.sf-legal ul {
    color: var(--sf-text-muted, #475569);
    margin-bottom: 1rem;
}

.sf-legal ul {
    padding-left: 1.25rem;
}

.sf-legal li {
    margin-bottom: 0.4rem;
}

.sf-legal a {
    color: var(--sf-primary);
    text-decoration: underline;
}

.sf-footer-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #5b6779;
    text-decoration: none;
    font-size: 0.87rem;
}

.sf-footer-mail:hover {
    color: var(--sf-primary);
}

.sf-footer-mail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #eef4f8;
    color: #475569;
    font-size: 0.95rem;
}

.sf-footer-mail:hover .sf-footer-mail-icon {
    background: #e3f1f9;
    color: var(--sf-primary);
}

.sf-footer-links--plain a {
    color: #5b6779;
}

.sf-footer h4,
.sf-footer h5 {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.sf-footer-brand {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.sf-footer p,
.sf-footer li,
.sf-footer a {
    color: #5b6779;
    font-size: 0.87rem;
    text-decoration: none;
    line-height: 1.6;
}

.sf-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-footer li {
    margin-bottom: 0.45rem;
}

.sf-footer a:hover {
    color: #0f172a;
}

.sf-footer-bottom {
    background: #031124;
    margin-top: 0.2rem;
    padding: 0.72rem 0;
    color: #c3cfde;
    font-size: 0.78rem;
}

.sf-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sf-footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.sf-footer-bottom-links a {
    color: #d3deea;
    text-decoration: none;
}

.sf-footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .sf-newsletter-media {
        min-height: 220px;
    }

    .sf-newsletter-badge {
        right: 0.45rem;
        bottom: 0.45rem;
        padding: 0.56rem 0.72rem;
    }

    .sf-country-number {
        font-size: 1.4rem;
    }

    .sf-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

.h-0 {
    height: 0 !important;
}

@media (max-width: 991px) {
    .sf-hero-title {
        font-size: 2.1rem;
    }

    .sf-hero-line1,
    .sf-hero-line2 {
        white-space: normal;
        flex-wrap: wrap;
    }

    .sf-pill {
        font-size: 1.85rem;
    }

    .sf-hero-copy {
        max-width: 100%;
        padding-left: 0;
    }

    .sf-hero-categories {
        padding-left: 0;
        margin-top: 1.15rem;
    }

    .sf-trust-wrap {
        position: static;
        margin-top: 1.5rem;
    }

    .sf-nav-container,
    .sf-trust-container,
    .sf-navbar {
        max-width: 100%;
    }

    .sf-destinations-head {
        flex-direction: column;
        align-items: stretch !important;
    }

    .sf-destinations-cta {
        align-self: flex-start;
    }

    .sf-hero-content {
        min-height: auto;
        padding-top: clamp(4.75rem, 14vw, 6rem);
        padding-bottom: 1.2rem;
    }

    .sf-trust-item-border {
        border-left: 0;
        border-right: 0;
    }
}

@media (max-width: 575px) {
    .sf-navbar-wrap {
        padding-top: 0.35rem;
    }

    .sf-navbar {
        padding: 8px 12px;
        gap: 0.5rem;
        border-radius: 40px;
    }

    .sf-brand-framer-img {
        margin-left: 0;
    }

    .sf-hero-title {
        font-size: clamp(1.65rem, 7.2vw, 2.1rem);
    }

    .sf-pill {
        font-size: clamp(1.25rem, 5.5vw, 1.85rem);
        padding: 0.35rem 0.75rem 0.4rem;
    }

    .sf-hero-text br {
        display: none;
    }

    .sf-hero-copy {
        padding-left: 0;
        padding-right: 0;
    }

    .sf-hero .sf-lux-search {
        width: min(100%, 22rem);
        max-width: calc(100% - 1.25rem);
    }

    .sf-visa-framer-search {
        width: min(100%, 22rem);
        max-width: calc(100% - 1.25rem);
    }

    .sf-hero .sf-lux-search__shell,
    .sf-visa-framer-search .sf-lux-search__shell {
        padding: 0.28rem 0.3rem 0.28rem 0.7rem;
    }

    .sf-hero .sf-lux-search__btn,
    .sf-visa-framer-search .sf-lux-search__btn {
        min-width: 3.85rem;
        padding: 0 0.65rem;
        font-size: 0.74rem;
    }

    .sf-lux-search__shell {
        padding: 0.28rem 0.3rem 0.28rem 0.7rem;
    }

    .sf-lux-search__btn {
        min-width: 3.85rem;
        padding: 0 0.65rem;
        font-size: 0.74rem;
    }

    .sf-trustbar {
        padding: 0.65rem 0.75rem;
        border-radius: 18px;
    }

    .sf-trust-item {
        padding: 0.85rem 0.5rem;
    }

    .sf-trust-rating-line {
        flex-wrap: wrap;
        row-gap: 0.2rem;
    }

    .sf-trust-score {
        white-space: normal;
        text-align: center;
    }
}

.sf-card-location-text {
    color: var(--sf-text);
    font-size: 15px;
    font-weight: 100;
}

/* Join the Adventure section (reference-aligned) */
.sf-join-section {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
}

.sf-join-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(400px, 430px) minmax(210px, 240px);
    align-items: center;
    width: 100%;
    column-gap: clamp(1rem, 2vw, 1.8rem);
}

.sf-join-copy {
    justify-self: start;
}

.sf-join-media,
.sf-join-stats {
    justify-self: start;
}

.sf-join-title {
    font-size: clamp(2.05rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
}

.sf-join-title-line {
    display: block;
}

.sf-join-subtitle {
    font-size: 0.98rem;
    line-height: 1.62;
    color: #555f70;
    margin-bottom: 1.45rem;
}

.sf-join-cta {
    min-height: 44px;
    padding-inline: 1.55rem;
}

.sf-join-media {
    display: grid;
    grid-template-columns: minmax(0, 168px) minmax(0, 198px);
    gap: 0.95rem;
    align-items: stretch;
}

.sf-join-media-left {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0.95rem;
}

.sf-join-card {
    border-radius: 11px;
    overflow: hidden;
}

.sf-join-card--small {
    min-height: 228px;
}

.sf-join-card--tall {
    min-height: 372px;
    width: 276px;
}

.sf-join-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sf-join-badge {
    min-height: 130px;
    background: #efebff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.sf-join-badge-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.sf-join-badge-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #25243a;
}

.sf-join-stats {
    flex: none;
    grid-template-rows: repeat(2, min-content);
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-auto-rows: min-content;
    justify-content: center;
    gap: 32px;
    width: 100%;
    height: min-content;
    padding: 22px 20px;
    display: grid;
    position: relative;
    overflow: visible;
}

.sf-join-stat .sf-stat-number {
    margin: 0;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-family: "Urbanist", "Urbanist Placeholder";
}

.sf-join-stat .sf-stat-label {
    margin: 0.45rem 0 0;
    font-size: 1.02rem;
    color: #6b7280;
    line-height: 1.35;
}

@media (max-width: 1199px) {
    .sf-join-grid {
        grid-template-columns: 1fr;
        row-gap: 1.9rem;
    }

    .sf-join-copy,
    .sf-join-stats {
        max-width: 640px;
    }

    .sf-join-media {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        max-width: 420px;
    }

    .sf-join-stats {
        grid-template-columns: repeat(3, minmax(170px, 1fr));
    }
}

@media (max-width: 767px) {
    .sf-join-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .sf-join-media {
        grid-template-columns: 1fr;
    }

    .sf-join-card--small,
    .sf-join-card--tall {
        min-height: 260px;
    }

    .sf-join-stats {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}

/* Popular activities section - Framer style */
.sf-activities-section {
    padding-bottom: 5.5rem;
}

.sf-activities-intro {
    max-width: 46rem;
    margin: 0 auto 2.15rem;
}

.sf-activities-title {
    margin: 0 0 0.52rem;
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
}

.sf-activities-subtitle {
    margin: 0 auto;
    max-width: 39rem;
    color: #4e5255;
    font-size: 0.95rem;
    line-height: 1.45;
}

.sf-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.7vw, 1.3rem);
}

.sf-activity-card--framer {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.sf-activity-image--framer {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sf-activity-body--framer {
    padding: 0.72rem 0.05rem 0;
}

.sf-activity-body--framer h3 {
    margin: 0 0 0.35rem;
    font-size: 1.84rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    color: #1a1f2c;
}

.sf-activity-body--framer p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.45;
    color: #616b79;
}

.sf-activities-cta-wrap {
    margin-top: 1.9rem;
}

@media (max-width: 991px) {
    .sf-activities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .sf-activities-section {
        padding-top: 4.2rem;
        padding-bottom: 4rem;
    }

    .sf-activities-grid {
        grid-template-columns: 1fr;
    }

    .sf-activity-body--framer h3 {
        font-size: 1.42rem;
    }
}

/* .container.our_popular_activities {
    margin-top: 235px;
} */

.col-12.sf-hero-copy.aos-init.aos-animate {
    margin-left: 10px;
}

/* Why Choose section only */
.sf-why-section {
    padding-top: 2.6rem;
    padding-bottom: 4.6rem;
}

.sf-why-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 1.35rem;
}

.sf-why-copy {
    max-width: 34.5rem;
}

.sf-why-title {
    margin: 0 0 0.45rem;
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #151b2b;
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
}

.sf-why-subtitle {
    margin: 0;
    color: #4e5255;
    font-size: 0.92rem;
    line-height: 1.52;
}

.sf-why-cta {
    min-height: 44px;
    padding-inline: 1.3rem;
}

.sf-why-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.55rem;
}

.sf-why-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6.2;
    object-fit: cover;
}

.sf-why-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sf-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
    pointer-events: auto;
    cursor: pointer;
    z-index: 2;
}

.sf-why-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.35rem;
}

.sf-why-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.82rem;
}

.sf-why-feature-icon {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 0.52rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    flex-shrink: 0;
}

.sf-why-feature-icon--blue {
    background: #e9f0ff;
    color: #2d65f3;
}

.sf-why-feature-icon--violet {
    background: #f3eaff;
    color: #883bf6;
}

.sf-why-feature-icon--red {
    background: #ffecee;
    color: #ef4444;
}

.sf-why-feature-icon--yellow {
    background: #fff6da;
    color: #f2b928;
}

.sf-why-feature-content h3 {
    margin: 0 0 0.24rem;
    font-size: 1.36rem;
    line-height: 1.24;
    letter-spacing: -0.02em;
    color: #141b2b;
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
}

.sf-why-feature-content p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #616b79;
}

@media (max-width: 991px) {
    .sf-why-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .sf-why-features {
        grid-template-columns: 1fr;
    }
}

/* --- Testimonials: center-focused carousel --- */
.sf-section-testimonials.sf-section-muted {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.sf-testimonials-intro .sf-section-title {
    margin-bottom: 0.75rem;
}

.sf-testimonials-intro-text {
    max-width: 34rem;
}

.sf-testimonials-carousel-outer {
    position: relative;
    width: 100%;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: 0.25rem;
    overflow: visible;
}

.sf-testimonials-swiper.swiper {
    overflow: visible;
    width: 100%;
    padding-bottom: 0.5rem;
}

.sf-testimonials-swiper:not(.swiper-initialized) .swiper-slide {
    opacity: 1;
    transform: none;
}

.sf-testimonials-swiper .swiper-slide {
    height: 450px;
    box-sizing: border-box;
    opacity: 0.4;
    transform: scale(0.86);
    z-index: 1;
    display: flex;
}

.sf-testimonials-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sf-testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.sf-testimonial-card.sf-testimonial-card--carousel {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.15rem 1.2rem;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.sf-testimonial-card.sf-testimonial-card--carousel.sf-testimonial-card--quote-only {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.sf-testimonial-card.sf-testimonial-card--carousel:hover {
    transform: none;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.sf-testimonial-media {
    flex: 0 0 auto;
    width: min(36%, 180px);
    align-self: stretch;
}

.travelers-section {
    flex: 0 0 auto;
    width: min(60%, 300px);
    align-self: stretch;
}

.sf-testimonial-cover {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 160px;
    max-height: none;
    object-fit: cover;
    border-radius: 1rem;
}

.sf-testimonial-body--carousel {
    flex: 1;
    min-width: 0;
    padding: 0.15rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    height: 100%;
}

.sf-testimonial-headline {
    margin: 0 0 0.5rem;
    font-size: clamp(1.05rem, 2.1vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sf-testimonial-rating-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.sf-testimonial-stars {
    display: inline-flex;
    gap: 0.12rem;
    color: #eab308;
    font-size: 0.95rem;
}

.sf-testimonial-rating-num {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
}

.sf-testimonial-quote {
    margin: 0 0 auto;
    padding-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: #64748b;
}

/* Home/About carousel cards: clamp body to 3 lines, keep author visible */
.sf-testimonial-card--quote-only {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
    padding: 1.5rem 1.75rem;
    text-align: left;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.sf-testimonial-card--quote-only .sf-testimonial-main {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.sf-testimonial-card--quote-only .sf-testimonial-headline-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.35;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: -0.3px;
}

.sf-testimonial-card--quote-only .sf-testimonial-body-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

.sf-testimonial-card--quote-only .sf-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.sf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.sf-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f1f5f9;
}

.sf-testimonial-author-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.sf-testimonial-author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
}

.sf-testimonial-author-role {
    font-size: 0.78rem;
    color: #94a3b8;
}

.sf-testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.sf-testimonials-nav-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--sf-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 91, 142, 0.35);
}

.sf-testimonials-nav-btn:hover {
    background: var(--sf-primary-hover);
    transform: translateY(-1px);
}

.sf-testimonials-nav-btn:active {
    transform: translateY(0);
}

.sf-testimonials-nav-btn:focus-visible {
    outline: 2px solid var(--sf-navy);
    outline-offset: 3px;
}

@media (max-width: 575px) {
    .sf-testimonial-card.sf-testimonial-card--carousel {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .sf-testimonial-media {
        width: 100%;
        max-width: none;
    }

    .sf-testimonial-cover {
        min-height: 180px;
        aspect-ratio: 16 / 10;
        height: auto;
    }
}

.container.discover-moments {
    margin-top: 40px;
}

/* --- Blog Section: pixel-tuned to reference --- */
.sf-blog-section {
    padding-top: 3.25rem;
    padding-bottom: 2.85rem;
    background-color: #F6F9FF;
}

.sf-blog-container {
    max-width: 1120px;
}

.sf-blog-head {
    margin-bottom: 2rem !important;
}

.sf-blog-title {
    margin-bottom: 0.55rem;
    font-size: clamp(2.4rem, 3.6vw, 3.35rem);
    font-weight: 750;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.sf-blog-subtitle {
    max-width: 42rem;
    margin-inline: auto;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #667085;
}

.sf-blog-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.sf-blog-col {
    max-width: 352px;
}

.sf-blog-card.sf-blog-card-refined {
    border-radius: 1rem;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.sf-blog-card.sf-blog-card-refined:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.sf-blog-card-refined {
    overflow: hidden;
}

.sf-blog-card-refined .sf-blog-image {
    height: 180px;
    border-radius: 0;
    transition: transform 0.45s ease;
    transform: scale(1);
    transform-origin: center center;
}

.sf-blog-card-refined:hover .sf-blog-image {
    transform: scale(1.08);
}

.sf-blog-body.sf-blog-body-refined {
    padding: 0.82rem 0.88rem 0.95rem;
}

.sf-blog-body-refined .sf-blog-date {
    margin: 0 0 0.38rem;
    font-size: 0.72rem;
    color: #8a94a6;
}

.sf-blog-body-refined h3 {
    margin: 0 0 0.35rem;
    font-size: 1.06rem;
    line-height: 1.28;
    font-weight: 650;
    color: #132238;
}

.sf-blog-body-refined p {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #667085;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sf-blog-cta-wrap {
    margin-top: 1.35rem !important;
}

.sf-blog-cta {
    min-height: 40px;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.sf-footer .sf-footer-links a.active {
    color: var(--sf-primary);
    font-weight: 600;
}

/* Custom Destination Detail CSS */
.detail-title {
    font-family: 'Urbanist', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 24px;
}

.info-card {
    /* background-color: #f8fafc;
    border: 1.5px solid #cbd5e1; */
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 35px;
    background-color: var(--token-af045a6c-a577-4565-9397-1608ab0b3f28, #e8eeff);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-family: 'Urbanist', 'Inter', sans-serif;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.itinerary-accordion {
    margin-bottom: 35px;
}

.itinerary-accordion .accordion-item {
    border: 1px solid #cbd5e1;
    border-radius: 24px !important;
    margin-bottom: 18px;
    overflow: hidden;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.itinerary-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #1e6a8a;
    box-shadow: 0 4px 15px rgba(30, 106, 138, 0.04);
}

.itinerary-accordion .accordion-button {
    background-color: #f8fafc !important;
    color: #0f172a !important;
    font-family: 'Urbanist', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.itinerary-accordion .accordion-button::after {
    display: none !important;
}

.itinerary-accordion .toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid #1e6a8a;
    color: #1e6a8a;
    background-color: transparent;
    font-size: 14px;
}

.itinerary-accordion .accordion-button:not(.collapsed) .toggle-icon {
    background-color: #1e6a8a;
    border-color: #1e6a8a;
    color: white;
}

.itinerary-accordion .accordion-button .toggle-icon .bi-dash {
    display: block;
}

.itinerary-accordion .accordion-button .toggle-icon .bi-plus {
    display: none;
}

.itinerary-accordion .accordion-button.collapsed .toggle-icon .bi-dash {
    display: none;
}

.itinerary-accordion .accordion-button.collapsed .toggle-icon .bi-plus {
    display: block;
    font-size: x-large;
    margin-top: 4px;
}

.itinerary-body {
    background-color: #ffffff;
    padding: 24px 28px;
    border-top: 1px solid #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.spec-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #334155;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #64748b;
    font-weight: bold;
}

/* Custom Destination Detail Carousel Indicators */
#destinationCarousel .sf-carousel-indicators-custom {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    position: static;
}

#destinationCarousel .sf-carousel-indicators-custom button {
    background-color: #94a3b8 !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: none !important;
    margin: 0 5px !important;
    padding: 0 !important;
    text-indent: 0 !important;
    transition: all 0.3s ease !important;
    flex: 0 1 auto !important;
}

#destinationCarousel .sf-carousel-indicators-custom button.active {
    background-color: #1e6a8a !important;
    opacity: 1 !important;
    transform: scale(1.2) !important;
}

/* Custom Destination Detail CSS - Structural Classes */
.sf-detail-page-wrapper {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: var(--token-e445b17e-60a7-4603-9450-2423039d0399, #f6f9ff);
    ;
}

.sf-detail-header {
    margin-bottom: 40px;
}

.sf-detail-tag {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.sf-detail-main-title {
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: #0f172a;
    margin: 0;
}

.sf-detail-slider-wrap {
    position: relative;
    margin-inline: auto;
    height: clamp(280px, 52vw, 615px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.sf-detail-slider-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

#destinationCarousel,
#destinationCarousel .carousel-inner,
#destinationCarousel .carousel-item {
    height: 100%;
}

.sf-detail-slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sf-detail-slider-img {
    border-radius: 20px;
}

.sf-slider-pagination-box {
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 24px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sf-detail-price-suffix {
    font-size: 12px;
    font-weight: normal;
    color: #64748b;
}

.sf-itinerary-item-title {
    font-weight: 700;
    color: #1e6a8a;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    margin-bottom: 12px;
}

.sf-itinerary-desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.sf-booking-form-wrap {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    border: 1px solid #cbd5e1;
}

.sf-booking-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.sf-booking-subtitle {
    font-size: 14px;
}

.sf-booking-input {
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
}

.sf-booking-icon {
    right: 15px;
    top: 15px;
    color: #64748b;
}

.sf-booking-submit {
    background-color: #0f172a !important;
    border-radius: 30px !important;
}

.sf-booking-submit:hover {
    background-color: #1e293b !important;
}

.booking-desc {
    padding-right: 50px !important;
    resize: none;

}

/* —— Framer-style page hero (Blog + Visa) —— */
.sf-blog-hero {
    padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(3.5rem, 6vw, 5rem);
    background-color: #e8eef8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.sf-hero-fade {
    height: clamp(17rem, 38vw, 29rem);
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(246, 249, 255, 1) 100%);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.sf-framer-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    font-weight: 200;
    margin-top: 0;
}

.sf-hero-title-framer {
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--sf-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 auto 1.5rem;
    max-width: 45.625rem;
    position: relative;
    z-index: 2;
}

.sf-hero-subtitle-framer {
    font-size: 0.9375rem;
    color: #4e5255;
    max-width: 42.5rem;
    line-height: 1.65;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    width: 100%;
}

/* Blog listing band + Visa popular (same surface) */
.sf-section-listing {
    background: #f6f9ff;
    padding-bottom: 5rem;
}

.sf-filter-container-framer {
    display: flex;
    justify-content: center;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.sf-filter-bar {
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

.sf-filter-pills {
    row-gap: 0.45rem;
}

.sf-pill-framer {
    padding: 10px 22px;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.sf-pill-framer:hover {
    background: rgba(0, 90, 141, 0.05);
    color: var(--sf-primary);
}

.sf-pill-framer.active {
    background: var(--sf-primary);
    color: #ffffff;
}

.sf-blog-posts-grid [data-aos] {
    will-change: transform, opacity;
}

.sf-blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.sf-card-horizontal {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(1.35rem, 2.2vw, 2rem);
    gap: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid #e8eef4;
    min-height: clamp(13.5rem, 17vw, 16.5rem);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    align-items: center;
    height: 100%;
}

.sf-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.sf-card-h-img-wrap {
    width: clamp(10rem, 42%, 14rem);
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.sf-card-h-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.sf-card-horizontal:hover .sf-card-h-img-wrap img {
    transform: scale(1.06) rotate(-3deg);
}

.sf-card-h-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    padding: 0.25rem 0;
    gap: 0.85rem;
}

.sf-card-h-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
    margin-bottom: 1.35rem;
}

.sf-card-h-title a {
    color: inherit;
    text-decoration: none;
}

.sf-card-h-title a:hover {
    color: var(--sf-primary);
}

.sf-card-h-meta {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.sf-sep-framer {
    margin: 0 8px;
    color: #cbd5e1;
}

.sf-blog-load-more-wrap {
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-bottom: 7.5rem;
}

.sf-blog-load-more {
    min-width: 11rem;
    padding: 0.9rem 2.75rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(0, 90, 141, 0.22);
}

.sf-blog-load-more.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.sf-section-recent-framer {
    background: #eef3f9;
    padding: clamp(4rem, 8vw, 6.25rem) 0 clamp(4.5rem, 8vw, 6.5rem);
    width: 100%;
    overflow: hidden;
}

.sf-blog-recent-section__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.sf-section-recent-framer .sf-heading-framer,
.sf-blog-recent-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
}

.sf-section-recent-framer .sf-blog-recent-swiper-wrap,
.sf-blog-detail-related .sf-blog-related-swiper-wrap {
    width: 100%;
    overflow: hidden;
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sf-section-recent-framer .sf-blog-recent-swiper,
.sf-blog-detail-related .sf-blog-related-swiper {
    width: 100%;
    overflow: hidden;
    padding-left: clamp(1rem, 4vw, 2rem);
}

.sf-section-recent-framer .sf-card-vertical-link,
.sf-blog-detail-related .sf-card-vertical-link {
    text-align: left;
}

.sf-section-recent-framer .sf-card-vertical,
.sf-blog-detail-related .sf-card-vertical {
    border-radius: 18px;
    min-height: 0;
    border: none;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
    background: #ffffff;
    overflow: visible;
    padding: clamp(1rem, 2vw, 1.25rem);
    gap: 0;
}

.sf-section-recent-framer .sf-card-vertical-link:hover .sf-card-vertical,
.sf-blog-detail-related .sf-card-vertical-link:hover .sf-card-vertical {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.sf-section-recent-framer .sf-card-v-img-wrap,
.sf-blog-detail-related .sf-card-v-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.9rem;
}

.sf-section-recent-framer .sf-card-v-img-wrap img,
.sf-blog-detail-related .sf-card-v-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.sf-section-recent-framer .sf-card-vertical-link:hover .sf-card-v-img-wrap img,
.sf-blog-detail-related .sf-card-vertical-link:hover .sf-card-v-img-wrap img {
    transform: scale(1.06) rotate(-3deg);
}

.sf-section-recent-framer .sf-card-v-body,
.sf-blog-detail-related .sf-card-v-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    min-height: 0;
    width: 100%;
}

.sf-section-recent-framer .sf-card-v-date,
.sf-blog-detail-related .sf-card-v-date {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin: 0 0 0.5rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.sf-section-recent-framer .sf-card-v-title,
.sf-blog-detail-related .sf-card-v-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4em * 2);
}

.sf-section-recent-framer .sf-card-v-excerpt,
.sf-blog-detail-related .sf-card-v-excerpt {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
    text-align: left;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 2);
}

.sf-section-recent-framer .sf-blog-recent-pagination,
.sf-blog-detail-related .sf-blog-related-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin: 2.25rem auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    align-self: center;
}

.sf-section-recent-framer .sf-blog-recent-pagination .swiper-pagination-bullet,
.sf-blog-detail-related .sf-blog-related-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 50%;
    background: #c5d5e8;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sf-section-recent-framer .sf-blog-recent-pagination .swiper-pagination-bullet-active,
.sf-blog-detail-related .sf-blog-related-pagination .swiper-pagination-bullet-active {
    width: 8px;
    border-radius: 50%;
    background: var(--sf-primary);
    transform: scale(1.15);
}

.sf-heading-framer {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.sf-card-vertical-link {
    display: flex;
    color: inherit;
    height: 100%;
}

.sf-card-vertical {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-card-vertical-link:hover .sf-card-vertical {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.sf-card-v-img-wrap {
    height: 220px;
    flex-shrink: 0;
}

.sf-card-v-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-card-v-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 28px 32px 32px;
    min-height: 180px;
}

.sf-card-v-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
    flex-shrink: 0;
}

.sf-card-v-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.35em * 2);
}

.sf-card-v-title:hover{
    color: var(--sf-primary);
}

.sf-card-v-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    margin-top: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 2);
}

.sf-blog-recent-swiper-wrap,
.sf-blog-related-swiper-wrap {
    position: relative;
}

.sf-blog-recent-swiper .swiper-slide,
.sf-blog-related-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.sf-blog-recent-pagination .swiper-pagination-bullet,
.sf-blog-related-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    opacity: 1;
}

.sf-blog-recent-pagination .swiper-pagination-bullet-active,
.sf-blog-related-pagination .swiper-pagination-bullet-active {
    background: var(--sf-primary);
    width: 32px;
    border-radius: 5px;
}

.sf-section-newsletter {
    padding: 100px 0;
}

.sf-newsletter-box-framer {
    background: #ffffff;
    border-radius: 60px;
    padding: 80px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.sf-news-title-framer {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.sf-news-text-framer {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sf-news-form-framer {
    display: flex;
    gap: 8px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    max-width: 550px;
}

.sf-news-form-framer .form-control {
    border: none;
    padding-left: 24px;
    box-shadow: none;
    font-size: 16px;
}

.sf-news-visual-wrap {
    position: relative;
    display: inline-block;
}

.sf-shape-yellow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fde68a;
    border-radius: 40px;
    top: 0;
    left: 0;
    z-index: 0;
    transform: rotate(-7deg);
}

.sf-news-img-framer {
    width: 100%;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sf-badge-floating {
    position: absolute;
    bottom: 32px;
    right: -24px;
    background: #ffffff;
    padding: 20px 32px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.sf-badge-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--sf-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.sf-badge-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Blog detail page */
.sf-blog-detail-hero {
    position: relative;
    min-height: clamp(22rem, 52vh, 34rem);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.sf-blog-detail-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-blog-detail-hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.08) 0%, rgba(246, 249, 255, 0.95) 88%);
}

.sf-blog-detail-hero__inner {
    position: relative;
    z-index: 2;
    padding: clamp(6rem, 14vw, 8rem) 0 clamp(2rem, 5vw, 3rem);
}

.sf-blog-detail-hero__card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.sf-blog-detail-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--sf-primary);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.sf-blog-detail-hero__date {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.sf-blog-detail-content {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
    background: #fff;
}

/* Inherits .container width — matches hero card */

.sf-blog-detail-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    margin: 0 auto 2rem;
}

.sf-blog-detail-body {
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #334155;
}

.sf-blog-detail-body h1,
.sf-blog-detail-body h2,
.sf-blog-detail-body h3,
.sf-blog-detail-body h4,
.sf-blog-detail-body h5,
.sf-blog-detail-body h6 {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.sf-blog-detail-body h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.15rem);
    margin: 2.5rem 0 1rem;
}

.sf-blog-detail-body h2 {
    font-size: clamp(1.45rem, 3vw, 1.75rem);
    margin: 2.25rem 0 1rem;
}

.sf-blog-detail-body h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
    margin: 2rem 0 0.85rem;
}

.sf-blog-detail-body h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin: 1.75rem 0 0.75rem;
}

.sf-blog-detail-body h5 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.65rem;
}

.sf-blog-detail-body h6 {
    font-size: 0.95rem;
    margin: 1.25rem 0 0.55rem;
}

.sf-blog-detail-body p {
    margin-bottom: 1.15rem;
}

.sf-blog-detail-body ul,
.sf-blog-detail-body ol {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
}

.sf-blog-detail-body li {
    margin-bottom: 0.45rem;
}

.sf-blog-detail-gallery {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.sf-blog-detail-gallery--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sf-blog-detail-gallery--single {
    grid-template-columns: 1fr;
}

.sf-blog-detail-gallery__item {
    min-width: 0;
}

.sf-blog-detail-gallery__img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    display: block;
}

.sf-blog-detail-body .sf-blog-detail-video {
    margin: 2rem 0;
}

.sf-blog-detail-body .sf-blog-detail-video__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.sf-blog-detail-body .sf-blog-detail-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sf-blog-detail-body .sf-blog-detail-video__native {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.sf-blog-detail-quote {
    margin: 2.5rem auto;
    padding: 0;
    border: 0;
    max-width: 720px;
    text-align: center;
}

.sf-blog-detail-quote p {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    line-height: 1.65;
    color: #0f172a;
    margin: 0;
    font-weight: 500;
}

.sf-blog-detail-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.sf-blog-detail-share__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.sf-blog-detail-share__icons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.sf-blog-detail-share__icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--sf-primary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sf-blog-detail-share__icons a:hover {
    background: var(--sf-primary);
    color: #fff;
    transform: translateY(-2px);
}

.sf-blog-detail-related {
    background: #eef3f9;
    padding: clamp(4rem, 8vw, 6.25rem) 0 clamp(4.5rem, 8vw, 6.5rem);
    width: 100%;
    overflow: hidden;
}

.sf-blog-detail-related__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.sf-blog-detail-related__title {
    font-size: clamp(3rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}

.sf-blog-detail-related__sub {
    max-width: 720px;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #64748b;
}

@media (max-width: 991px) {
    .sf-filter-container-framer {
        margin-top: -2.5rem;
    }

    .sf-filter-bar {
        border-radius: 28px;
        padding: 12px 16px;
        width: 100%;
    }

    .sf-filter-pills {
        justify-content: flex-start !important;
    }

    .sf-pill-framer {
        font-size: 13px;
        padding: 8px 16px;
    }

    .sf-blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sf-card-horizontal {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .sf-blog-detail-gallery--split {
        grid-template-columns: 1fr;
    }

    .sf-card-vertical {
        min-height: 400px;
    }

    .sf-card-h-img-wrap {
        width: clamp(7.5rem, 38%, 10rem);
        max-width: none;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .sf-card-h-body {
        width: auto;
        flex: 1;
        padding: 0;
    }

    .sf-newsletter-box-framer {
        padding: 40px 24px;
        border-radius: 40px;
    }

    .sf-news-title-framer {
        font-size: 2rem;
    }

    .sf-badge-floating {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 32px;
        width: 100%;
    }

    .sf-news-form-framer {
        flex-direction: column;
        border-radius: 24px;
        max-width: 100%;
    }
}

/* Framer CTAs (blog load more, visa hero, etc.) */
.sf-btn-framer-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sf-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.95rem 2.75rem;
    font-weight: 700;
    border: none !important;
    font-size: 1rem;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 90, 141, 0.22);
}

.btn.sf-btn-framer-dark:focus-visible {
    outline: 2px solid rgba(0, 90, 141, 0.45);
    outline-offset: 3px;
}

.sf-btn-framer-dark:hover {
    background: var(--sf-primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

.sf-btn-framer-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 0.85rem 2.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid var(--sf-primary) !important;
    color: var(--sf-primary) !important;
    background: #fff !important;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn.sf-btn-framer-outline:focus-visible {
    outline: 2px solid rgba(0, 90, 141, 0.35);
    outline-offset: 3px;
}

.sf-btn-framer-outline:hover {
    background: rgba(0, 90, 141, 0.06) !important;
    color: var(--sf-primary-hover) !important;
    border-color: var(--sf-primary-hover);
}

/* Visa-only additions on shared Framer hero */
.sf-visa-framer-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sf-primary);
    margin: 0 auto 1.125rem;
    max-width: 45.625rem;
}

.sf-visa-framer-tools {
    margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.sf-visa-framer-search {
    position: relative;
    z-index: 5;
    width: min(100%, 34rem);
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-blog-hero .sf-lux-search {
    margin-top: 0;
    margin-bottom: 0;
}

.sf-visa-framer-search .sf-lux-search__shell {
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06),
        0 6px 20px rgba(0, 90, 141, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.sf-visa-framer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-top: clamp(1.35rem, 3.5vw, 2rem);
}

@media (max-width: 991px) {
    .sf-hero-title-framer {
        font-size: 2.5rem;
    }
}

/* —— Visa page hero & section spacing adjustments —— */
.sf-blog-hero.sf-visa-hero {
    padding-top: clamp(8.5rem, 13vw, 11rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem) !important;
    min-height: auto !important;
}

.sf-blog-hero.sf-visa-hero .sf-framer-hero-inner {
    margin-top: 0 !important;
}

.sf-blog-hero.sf-visa-hero .sf-visa-framer-tools {
    margin-top: 1.25rem !important;
}

.sf-visa-section {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.sf-visa-section.sf-section-listing {
    padding-top: 1.25rem !important;
}

.sf-visa-section--muted {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.sf-visa-section__title {
    margin-bottom: 0.65rem;
}

.sf-visa-section__sub {
    max-width: 42rem;
    color: #64748b;
}

.sf-visa-pop-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.sf-visa-pop-card:hover {
    box-shadow: 0 18px 44px rgba(0, 90, 141, 0.12);
    transform: translateY(-3px);
}

.sf-visa-pop-card__img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.sf-visa-pop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-visa-pop-card__body {
    padding: 1.1rem 1.15rem 1.2rem;
    position: relative;
}

.sf-visa-pop-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.sf-visa-pop-card__meta {
    font-size: 0.86rem;
    color: #64748b;
}

.sf-visa-pop-card__price {
    font-weight: 700;
    color: var(--sf-primary);
}

.sf-visa-pop-card__link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sf-primary);
    text-decoration: none;
}

.sf-visa-pop-card__link:hover {
    text-decoration: underline;
}

.sf-visa-type-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sf-visa-type-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.sf-visa-type-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-visa-type-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(145deg, #0ea5e9 0%, var(--sf-primary) 100%);
    box-shadow: 0 6px 16px rgba(0, 90, 141, 0.35);
}

.sf-visa-type-card__body {
    padding: 1.2rem 1.2rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sf-visa-type-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sf-visa-type-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    flex: 1;
}

.sf-visa-type-card__more {
    margin-top: 1rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--sf-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.sf-visa-type-card__more:hover {
    text-decoration: underline;
}

.sf-visa-why-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.sf-visa-why-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sf-visa-why-item__icon {
    flex-shrink: 0;
    color: #0ea5e9;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.sf-visa-why-item__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.sf-visa-why-item__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.sf-visa-cta-band {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.sf-visa-detail-page > .sf-visa-cta-band {
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.sf-visa-cta-band__inner {
    border-radius: 24px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(0, 90, 141, 0.96) 0%, #003e5c 55%, #022c43 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 50, 80, 0.25);
}

.sf-visa-cta-band__title {
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.sf-visa-cta-band__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.95);
}

.sf-visa-cta-band .sf-btn-framer-outline {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
    background: transparent !important;
}

.sf-visa-cta-band .sf-btn-framer-outline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #fff !important;
}

.sf-visa-framer-search .sf-search-suggestions,
.sf-visa-search-suggestions {
    z-index: 90;
}

.sf-visa-search-hint {
    font-size: 0.9rem;
    color: #64748b;
}

.sf-visa-search-clear {
    color: var(--sf-primary);
    font-weight: 600;
    text-decoration: none;
}

.sf-visa-search-clear:hover {
    text-decoration: underline;
}

.sf-visa-pop-card__tagline {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-visa-empty {
    border-color: #e2e8f0 !important;
}

.sf-visa-evisa-strip {
    padding-top: 0;
}

.sf-visa-evisa-strip__inner {
    border-radius: 22px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(125deg, rgba(240, 249, 255, 0.98) 0%, #fff 45%, rgba(224, 242, 254, 0.65) 100%);
    border: 1px solid rgba(186, 230, 253, 0.85);
    box-shadow: 0 14px 36px rgba(0, 90, 141, 0.08);
}

.sf-visa-evisa-strip__title {
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.sf-visa-evisa-strip__lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

.sf-visa-evisa-strip__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-visa-evisa-strip__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.45rem;
}

.sf-visa-evisa-strip__list li i {
    color: var(--sf-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.sf-visa-why-story {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
}

.sf-visa-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.35rem 1.45rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sf-visa-service-card:hover {
    box-shadow: 0 16px 38px rgba(0, 90, 141, 0.1);
    transform: translateY(-2px);
}

.sf-visa-service-card__icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(145deg, #0ea5e9 0%, var(--sf-primary) 100%);
    margin-bottom: 1rem;
}

.sf-visa-service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sf-visa-service-card__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
}

.sf-visa-service-card__link {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--sf-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.sf-visa-service-card__link:hover {
    text-decoration: underline;
}

/* Visa destination detail (/visa/{slug}) */
.sf-visa-detail-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 35%);
}

.sf-visa-detail-media {
    max-height: 28rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.sf-visa-detail-hero .sf-visa-detail-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
}

.sf-visa-detail-img {
    display: block;
    object-fit: cover;
    max-height: 28rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-visa-detail-hero .sf-visa-detail-media:hover .sf-visa-detail-img {
    transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .sf-detail-slider-wrap {
        transition: none;
    }

    .sf-detail-slider-wrap:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .sf-visa-detail-media,
    .sf-visa-detail-img {
        transition: none;
    }

    .sf-visa-detail-hero .sf-visa-detail-media:hover,
    .sf-visa-detail-hero .sf-visa-detail-media:hover .sf-visa-detail-img {
        transform: none;
    }
}

.sf-visa-detail-title {
    font-family: "Urbanist", "Urbanist Placeholder", sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.sf-visa-detail-tagline {
    font-size: 1.05rem;
    line-height: 1.55;
}

.sf-visa-detail-price {
    font-size: 1.1rem;
    color: #334155;
}

.sf-visa-detail-price strong {
    font-size: 1.35rem;
    color: var(--sf-primary);
}

.sf-visa-detail-prose {
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 42rem;
}

.sf-visa-type-detail-code {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(145deg, #0ea5e9 0%, var(--sf-primary) 100%);
    box-shadow: 0 6px 16px rgba(0, 90, 141, 0.25);
}

/* Visa type category page (/visa/{dest}/{slug}) — section rhythm, spec row, motion */
.sf-visa-detail-page.sf-visa-type-show > section.sf-section.sf-visa-section {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.sf-visa-detail-page.sf-visa-type-show > section.sf-section.sf-visa-detail-hero {
    padding-top: clamp(1rem, 2.5vw, 1.5rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.sf-visa-type-at-glance .container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sf-visa-spec-cards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    width: 100%;
}

.sf-visa-spec-cards-row__item {
    flex: 1 1 100%;
    min-width: 0;
}

@media (min-width: 768px) {
    .sf-visa-spec-cards-row__item {
        flex: 1 1 0;
        min-width: 0;
    }
}

.sf-visa-type-show .sf-visa-flamingo-panel--type-show .sf-visa-flamingo-process-list {
    max-width: none;
}

.sf-visa-type-show .sf-visa-flamingo-spec-card {
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

.sf-visa-type-show .sf-visa-flamingo-spec-card:hover {
    transform: translateY(-5px);
}

.sf-visa-type-show .sf-visa-flamingo-panel--type-show {
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s ease;
}

.sf-visa-type-show .sf-visa-flamingo-panel--type-show:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09) !important;
}

.sf-visa-detail-page.sf-visa-type-show > .sf-visa-cta-band {
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.sf-visa-type-show .sf-visa-flamingo-check {
    transition:
        transform 0.3s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.sf-visa-type-show .sf-visa-type-process-step:hover .sf-visa-flamingo-check {
    transform: scale(1.08);
    background: rgba(0, 90, 141, 0.16);
}

@media (prefers-reduced-motion: reduce) {
    .sf-visa-type-show .sf-visa-flamingo-spec-card,
    .sf-visa-type-show .sf-visa-flamingo-panel--type-show,
    .sf-visa-type-show .sf-visa-flamingo-check {
        transition: none;
    }

    .sf-visa-type-show .sf-visa-flamingo-spec-card:hover,
    .sf-visa-type-show .sf-visa-flamingo-panel--type-show:hover {
        transform: none;
    }

    .sf-visa-type-show .sf-visa-type-process-step:hover .sf-visa-flamingo-check {
        transform: none;
    }
}

/* Visa detail — Flamingo-style structured blocks (country + category pages) */
.sf-visa-flamingo-block {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 55%, #fff 100%);
}

.sf-visa-flamingo-panel {
    border-color: rgba(226, 232, 240, 0.95) !important;
}

.sf-visa-flamingo-prose {
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 48rem;
}

.sf-visa-flamingo-spec-card {
    border-color: rgba(226, 232, 240, 0.9) !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sf-visa-flamingo-spec-card:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border-color: rgba(0, 90, 141, 0.18) !important;
}

.sf-visa-flamingo-spec-label {
    letter-spacing: 0.04em;
    font-size: 0.68rem !important;
}

.sf-visa-flamingo-process-list {
    max-width: 40rem;
}

.sf-visa-flamingo-check {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 90, 141, 0.1);
    color: var(--sf-primary);
    font-size: 1rem;
    margin-top: 0.1rem;
}

.sf-visa-flamingo-notes {
    border-color: rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.sf-visa-flamingo-why .sf-visa-flamingo-why-card {
    border-color: rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.sf-visa-pop-card__title-link:hover {
    color: var(--sf-primary) !important;
}

.sf-visa-pop-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.sf-visa-pop-card__actions .sf-visa-pop-card__link {
    margin-top: 0;
}

.sf-visa-pop-card__link--muted {
    color: #64748b;
    font-weight: 600;
}

.sf-visa-pop-card__link--muted:hover {
    color: var(--sf-primary);
}

.sf-visa-type-card__hint {
    line-height: 1.45;
}

/* Visa index — compact card slider (reference UI: white tray, overlap nav, wave, centred labels) */
.sf-visa-compact-slider-section {
    padding-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1200px) {
    .sf-visa-compact-slider-section .container {
        max-width: 1440px !important;
    }
}
@media (min-width: 1400px) {
    .sf-visa-compact-slider-section .container {
        max-width: 1580px !important;
    }
}

.sf-visa-compact-slider__intro {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-visa-compact-slider__heading {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 700;
    color: #374151;
    letter-spacing: -0.01em;
    margin: 0 0 0.35rem;
}

.sf-visa-compact-slider__sub {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.45;
    max-width: 34rem;
}

.sf-visa-compact-slider {
    position: relative;
}

.sf-visa-compact-slider__frame {
    position: relative;
    padding: 0 clamp(1.35rem, 3.5vw, 2.25rem);
}

.sf-visa-compact-slider__shell {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
    padding: 1.15rem 1rem 1.2rem;
}

@media (min-width: 768px) {
    .sf-visa-compact-slider__shell {
        padding: 1.25rem 1.15rem 1.3rem;
    }
}

.sf-visa-compact-slider__viewport {
    overflow: hidden;
    border-radius: 12px;
}

.sf-visa-compact-swiper__swiper {
    overflow: visible;
}

.sf-visa-compact-swiper__swiper .swiper-slide {
    height: auto;
}

.sf-visa-compact-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid #c4c4c4;
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sf-visa-compact-slider__nav:hover:not(.swiper-button-disabled) {
    background: #fafafa;
    border-color: #9ca3af;
    color: #1f2937;
}

.sf-visa-compact-slider__nav--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.sf-visa-compact-slider__nav--next {
    right: 0;
    transform: translate(50%, -50%);
}

.sf-visa-compact-slider__nav.swiper-button-disabled {
    opacity: 0.32;
    pointer-events: none;
    box-shadow: none;
}

.sf-visa-compact-slider__nav i {
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 700;
}

.sf-visa-compact-card {
    display: flex;
    flex-direction: column;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebebeb;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (min-width: 768px) {
    .sf-visa-compact-card {
        height: 218px;
    }
}

.sf-visa-compact-card:hover {
    transform: translateY(-3px);
    border-color: #dcdcdc;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09);
}

.sf-visa-compact-card__media {
    position: relative;
    flex: 0 0 58%;
    min-height: 0;
    overflow: hidden;
    background: #e5e7eb;
}

.sf-visa-compact-card__img {
    width: 100%;
    height: 100%;
    min-height: 7.5rem;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-visa-compact-card:hover .sf-visa-compact-card__img {
    transform: scale(1.05);
}

.sf-visa-compact-card__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(1.65rem, 4.5vw, 2.1rem);
    z-index: 2;
    pointer-events: none;
    line-height: 0;
}

.sf-visa-compact-card__wave-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sf-visa-compact-card__body {
    flex: 1 1 42%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.45rem 0.65rem 0.75rem;
    background: #fff;
}

.sf-visa-compact-card__title {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.2rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.sf-visa-compact-card__tagline {
    font-size: 0.6875rem;
    line-height: 1.35;
    color: #64748b;
    font-weight: 500;
    max-width: 100%;
    padding: 0 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}

.sf-visa-compact-card__price {
    font-size: 0.6875rem;
    line-height: 1.35;
    color: #9ca3af;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .sf-visa-compact-card,
    .sf-visa-compact-card__img {
        transition: none;
    }

    .sf-visa-compact-card:hover,
    .sf-visa-compact-card:hover .sf-visa-compact-card__img {
        transform: none;
    }
}

/* Visa Type Section Styles */
.sf-visa-types-section {
    padding-top: 2rem;
}

.sf-visa-types-nav-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.sf-visa-type-nav-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 22px 18px;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
}

.sf-visa-type-nav-card .sf-visa-type-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.2s;
    line-height: 1.35;
}

/* Thin typographic arrow (matches design vs. heavy icon fonts) */
.sf-visa-type-card-arrow {
    display: inline-block;
    margin-left: 0.3em;
    font-size: 1rem;
    font-weight: 300;
    color: #475569;
    line-height: 1;
    letter-spacing: 0;
    transition: color 0.2s;
    vertical-align: 0.05em;
}

.sf-visa-type-nav-card.active .sf-visa-type-card-arrow {
    color: rgba(255, 255, 255, 0.92);
}

.sf-visa-type-nav-card:hover {
    transform: translateY(-3px);
    border-color: #94a3b8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.sf-visa-type-nav-card.active {
    background: #0d2e46;
    border-color: #0d2e46;
    box-shadow: 0 10px 20px -3px rgba(13, 46, 70, 0.35);
}

.sf-visa-type-nav-card.active .sf-visa-type-card-name {
    color: #fff;
}

.sf-visa-type-nav-card.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #0d2e46 transparent transparent;
    display: block;
    width: 0;
    height: 0;
}

/* Sub-tabs Navigation */
.sf-visa-subtabs-nav-wrapper {
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.sf-visa-subtabs-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: max-content;
}

.sf-visa-subtab-btn {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sf-visa-subtab-btn:hover {
    border-color: #94a3b8;
    color: #1e293b;
    background: #f8fafc;
}

.sf-visa-subtab-btn.active {
    border-color: #c3202e;
    color: #c3202e;
    background: #fff;
    box-shadow: 0 2px 4px rgba(195, 32, 46, 0.08);
}

/* Visa application itinerary (6-step layout) */
.sf-visa-itinerary {
    position: relative;
}

.sf-visa-itinerary__nav {
    overflow-x: auto;
    margin-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sf-visa-itinerary__nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.sf-visa-itinerary__nav-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: max-content;
}

.sf-visa-itinerary__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sf-visa-itinerary__nav-link:hover {
    border-color: #94a3b8;
    color: #1e293b;
    background: #f8fafc;
}

.sf-visa-itinerary__nav-link.is-active {
    border-color: #0d2e46;
    background: #0d2e46;
    color: #fff;
}

.sf-visa-itinerary__steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sf-visa-itinerary__step {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sf-visa-itinerary__step summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.sf-visa-itinerary__step summary::-webkit-details-marker {
    display: none;
}

.sf-visa-itinerary__step summary::after {
    content: '';
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sf-visa-itinerary__step[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 6px;
}

.sf-visa-itinerary__step[open] summary {
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
}

.sf-visa-itinerary__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d2e46;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
}

.sf-visa-itinerary__step-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sf-visa-itinerary__step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.sf-visa-itinerary__step-sub {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

.sf-visa-itinerary__step-body {
    padding: 20px 18px 22px;
}

.sf-visa-itinerary__process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-visa-itinerary__process-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sf-visa-itinerary__process-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef2f2;
    color: #c3202e;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.sf-visa-itinerary__timing-box {
    border-color: #e2e8f0 !important;
}

.sf-visa-itinerary__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.sf-visa-itinerary__docs-box {
    border-color: #e2e8f0 !important;
    height: 100%;
}

@media (max-width: 991px) {
    .sf-visa-itinerary__split {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .sf-visa-itinerary__nav {
        position: sticky;
        top: 88px;
        z-index: 5;
        background: linear-gradient(180deg, #fff 80%, rgba(255, 255, 255, 0));
        padding-top: 4px;
    }
}

/* Detail Blocks */
.sf-visa-type-details-container {
    position: relative;
}

.sf-visa-type-content-block {
    animation: sfFadeIn 0.35s ease;
}

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

.sf-visa-detail-card-wrapper {
    background: #fff;
    border-color: #e2e8f0 !important;
}

.sf-visa-content-title {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

/* Specs List */
.sf-visa-specs-list {
    margin-bottom: 2rem;
}

.sf-visa-specs-list li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-dot {
    width: 6px;
    height: 6px;
    background-color: #c3202e;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.spec-label {
    font-weight: 700;
    color: #1e293b;
    margin-right: 4px;
}

.spec-value {
    color: #475569;
}

/* Action Buttons */
.sf-visa-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sf-visa-btn-enquiry {
    background: #c3202e;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    transition: background-color 0.2s;
    min-height: 44px;
}

.sf-visa-btn-enquiry:hover {
    background: #a11a26;
}

.sf-visa-btn-download {
    background: #0d2e46;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    transition: background-color 0.2s;
    min-height: 44px;
}

.sf-visa-btn-download:hover {
    background: #071c2b;
}

.sf-visa-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    transition: all 0.2s;
    text-decoration: none;
}

.sf-visa-icon-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.whatsapp-btn i {
    color: #25D366;
    font-size: 1.35rem;
}

.phone-btn i {
    color: #0d2e46;
    font-size: 1.2rem;
}

/* Pricing Section */
.sf-visa-pricing-box {
    border-color: #e2e8f0 !important;
    background-color: #f8fafc !important;
}

.sf-entry-toggles {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.sf-radio-container {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    color: #334155;
    user-select: none;
}

.sf-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    transition: all 0.2s;
}

.sf-radio-container:hover input ~ .checkmark {
    border-color: #94a3b8;
}

.sf-radio-container input:checked ~ .checkmark {
    border-color: #c3202e;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.sf-radio-container input:checked ~ .checkmark::after {
    display: block;
}

.sf-radio-container .checkmark::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c3202e;
}

/* Pricing Table */
.sf-pricing-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.sf-pricing-table th {
    background-color: #e2e8f0 !important;
    color: #334155 !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none !important;
}

.sf-pricing-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0 !important;
    color: #1e293b;
    font-size: 0.92rem;
    background: transparent !important;
}

.sf-pricing-table tr:last-child td {
    border-bottom: none !important;
}

.sf-price-value {
    color: #c3202e !important;
    font-weight: 800;
    font-size: 1.15rem;
}

.sf-pricing-disclaimer {
    font-size: 0.78rem;
    color: #64748b;
}

/* Bullet Lists for Documents/Notes */
.sf-visa-bullet-list {
    padding-left: 20px;
    list-style: none;
}

.sf-visa-bullet-list li {
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #475569;
    padding-left: 15px;
}

.sf-visa-bullet-list li::before {
    content: "•";
    color: #c3202e;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: -10px;
    top: -2px;
}

/* SEO: breadcrumbs */
.sf-breadcrumbs {
    margin-bottom: 1.25rem;
}

.sf-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.sf-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #cbd5e1;
}

.sf-breadcrumbs__item a {
    color: var(--sf-primary);
    text-decoration: none;
}

.sf-breadcrumbs__item a:hover {
    text-decoration: underline;
}

.sf-dest-related-packages__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
}

/* ── Destinations mega-menu ── */
.sf-nav-mega-wrap {
    position: static;
    display: inline-flex;
    align-items: center;
    /* Symmetric padding keeps the trigger vertically centered with the other
       links while still extending the hover hit area toward the panel. */
    padding: 18px 0;
    margin: -18px 0;
}

.sf-nav-item--mega {
    position: static;
}

.sf-nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgb(145 144 144);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: transparent;
    font-weight: 400;
    font-size: 0.9rem;
    height: 22px;
    line-height: 22px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.sf-nav-mega-trigger::before,
.sf-nav-mega-trigger::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}

.sf-nav-mega-trigger::before {
    color: rgb(145 144 144);
}

.sf-nav-mega-trigger::after {
    top: -100%;
    color: var(--sf-primary);
}

.sf-nav-mega-wrap:hover .sf-nav-mega-trigger::before,
.sf-nav-mega-trigger:hover::before,
.sf-nav-container:has(.sf-mega-menu:hover) .sf-nav-mega-trigger::before,
.sf-nav-mega-wrap.is-open .sf-nav-mega-trigger::before {
    transform: translateY(100%);
    opacity: 0;
}

.sf-nav-mega-wrap:hover .sf-nav-mega-trigger::after,
.sf-nav-mega-trigger:hover::after,
.sf-nav-container:has(.sf-mega-menu:hover) .sf-nav-mega-trigger::after,
.sf-nav-mega-wrap.is-open .sf-nav-mega-trigger::after {
    top: 0;
}

.sf-nav-mega-trigger.active {
    font-weight: 500;
}

.sf-nav-mega-trigger.active::before {
    opacity: 0;
    transform: translateY(100%);
}

.sf-nav-mega-trigger.active::after {
    top: 0;
    color: var(--sf-primary);
}

.sf-nav-mega-chevron {
    position: relative;
    z-index: 1;
    font-size: 0.65rem;
    color: rgb(145 144 144);
    transition: transform 0.2s ease, color 0.2s ease;
}

.sf-nav-mega-wrap:hover .sf-nav-mega-chevron,
.sf-nav-container:has(.sf-mega-menu:hover) .sf-nav-mega-chevron,
.sf-nav-mega-wrap.is-open .sf-nav-mega-chevron {
    transform: rotate(180deg);
    color: var(--sf-primary);
}

.sf-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 6px);
    width: auto;
    transform: none;
    /* Transparent bridge — keeps hover alive while moving from trigger to panel */
    padding-top: 18px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 20;
}

.sf-mega-menu__inner {
    display: grid;
    grid-template-columns: repeat(var(--sf-mega-menu-columns, 6), minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    padding: 1.75rem 1.5rem;
}

.sf-nav-container:has(.sf-nav-mega-wrap:hover) .sf-mega-menu,
.sf-nav-container:has(.sf-mega-menu:hover) .sf-mega-menu,
.sf-nav-container:has(.sf-nav-mega-wrap:focus-within) .sf-mega-menu,
.sf-nav-container:has(.sf-nav-mega-wrap.is-open) .sf-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sf-mega-menu__region {
    margin: 0 0 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sf-primary);
}

.sf-mega-menu__group + .sf-mega-menu__group {
    margin-top: 1.25rem;
}

.sf-mega-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-mega-menu__link {
    display: block;
    padding: 0.22rem 0;
    color: #334155;
    text-decoration: none;
    font-size: 0.84rem;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.sf-mega-menu__link:hover {
    color: var(--sf-primary);
}

.sf-nav-mobile-mega {
    border-radius: 12px;
    overflow: hidden;
}

.sf-nav-mobile-mega summary {
    list-style: none;
    cursor: pointer;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    color: #64748b;
    font-weight: 500;
}

.sf-nav-mobile-mega summary::-webkit-details-marker {
    display: none;
}

.sf-nav-mobile-mega summary.active {
    background: rgba(0, 90, 141, 0.08);
    color: var(--sf-primary);
}

.sf-nav-mobile-mega__body {
    padding: 0 0.75rem 0.75rem;
    max-height: 60vh;
    overflow-y: auto;
}

.sf-nav-mobile-mega__region {
    margin: 0.75rem 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sf-primary);
}

.sf-nav-mobile-mega__link {
    display: block;
    padding: 0.35rem 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.86rem;
}

.sf-nav-mobile-mega__all {
    display: block;
    margin-top: 0.75rem;
    padding: 0.5rem;
    color: var(--sf-primary);
    font-weight: 600;
    text-decoration: none;
}

/* ── Destination place hub page (Flamingo-style) ── */
.sf-place-page {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
    background: var(--sf-page-bg);
}

.sf-place-page__intro {
    padding-bottom: 1.25rem;
}

.sf-place-page__head {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 380px);
    gap: 2rem;
    align-items: start;
    margin-top: 0.75rem;
}

.sf-place-page__title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.85rem;
    line-height: 1.15;
}

.sf-place-page__desc-text {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.sf-place-page__desc-text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sf-place-rich-content p:last-child,
.sf-place-rich-content ul:last-child,
.sf-place-rich-content ol:last-child {
    margin-bottom: 0;
}

.sf-place-rich-content p {
    margin: 0 0 0.85rem;
}

.sf-place-rich-content ul,
.sf-place-rich-content ol {
    margin: 0 0 0.85rem 1.25rem;
    padding: 0;
}

.sf-place-rich-content a {
    color: var(--sf-primary);
    text-decoration: underline;
}

.sf-place-rich-content h2,
.sf-place-rich-content h3 {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.75rem 0 0.5rem;
}

.sf-place-rich-content h2 { font-size: 1.15rem; }
.sf-place-rich-content h3 { font-size: 1rem; }

.sf-place-page__read-more {
    border: none;
    background: none;
    padding: 0;
    margin-top: 0.35rem;
    color: var(--sf-primary);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
}

.sf-place-page__head-media img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.sf-place-toolbar-shell {
    width: min(1420px, calc(100% - 2rem));
    margin-inline: auto;
    padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.sf-place-toolbar {
    display: grid;
    grid-template-columns: minmax(190px, 1.2fr) minmax(190px, 1.2fr) minmax(170px, 1.35fr) auto;
    align-items: end;
    gap: clamp(1.75rem, 3.5vw, 3rem);
    padding: 1.35rem clamp(1.5rem, 3vw, 2.25rem);
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    margin-bottom: 1.5rem;
}

.sf-place-toolbar__fields {
    display: contents;
}

.sf-place-toolbar__field--search {
    min-width: 0;
}

.sf-place-toolbar__field--range {
    display: block;
    min-width: 0;
}

.sf-range-field__head {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.3;
}

.sf-range-field__head i {
    font-size: 0.95rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.sf-range-field__title {
    font-weight: 500;
    color: #64748b;
}

.sf-range-field__title strong {
    font-weight: 700;
    color: #334155;
}

.sf-range-slider {
    position: relative;
    height: 2.75rem;
    padding-top: 1.35rem;
}

.sf-range-slider__track {
    position: absolute;
    left: 0;
    right: 0;
    top: 1.55rem;
    height: 4px;
    background: #d1d5db;
    border-radius: 999px;
}

.sf-range-slider__fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #26bdd9;
    border-radius: 999px;
}

.sf-range-slider__bubble {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    pointer-events: none;
}

.sf-range-slider__input {
    position: absolute;
    left: 0;
    right: 0;
    top: 1.05rem;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.sf-range-slider__input::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: none;
}

.sf-range-slider__input::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.sf-range-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15);
    cursor: grab;
}

.sf-range-slider__input::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15);
    cursor: grab;
}

.sf-range-slider__input--max {
    z-index: 2;
}

.sf-range-slider__input--min {
    z-index: 3;
}

.sf-range-slider__input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(38, 189, 217, 0.25);
}

.sf-place-toolbar__label i {
    margin-right: 0.2rem;
    color: #94a3b8;
}

.sf-place-toolbar__field--grow {
    grid-column: span 1;
}

.sf-place-toolbar__submit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-width: 7.5rem;
}

.sf-place-toolbar__label--spacer {
    visibility: hidden;
    user-select: none;
}

.sf-place-toolbar__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.sf-place-toolbar__control {
    width: 100%;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    font-size: 0.88rem;
    background: #fff;
    color: #0f172a;
}

.sf-place-toolbar__control:focus {
    outline: none;
    border-color: var(--sf-primary);
    box-shadow: 0 0 0 3px rgba(0, 90, 141, 0.12);
}

.sf-place-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sf-place-toolbar__search {
    border: none;
    border-radius: 999px;
    background: var(--sf-primary);
    color: #fff;
    font-weight: 600;
    padding: 0.72rem 1.85rem;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.sf-place-toolbar__search:hover {
    background: var(--sf-primary-hover);
}

.sf-place-toolbar__reset {
    color: var(--sf-primary);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

.sf-place-tabs-wrap {
    margin-bottom: 1.25rem;
}

.sf-place-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.65rem;
}

.sf-place-tab {
    display: inline-flex;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.sf-place-tab:hover,
.sf-place-tab.is-active {
    background: rgba(0, 90, 141, 0.1);
    color: var(--sf-primary);
}

.sf-place-packages-block {
    padding: 1.75rem 0 2.25rem;
}

.sf-place-block-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sf-place-block-head h2,
.sf-place-block-title {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.15rem;
}

.sf-place-block-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
}

.sf-place-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sf-place-pkg-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sf-place-pkg-card:hover {
    border-color: rgba(0, 90, 141, 0.25);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.sf-place-pkg-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sf-place-pkg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.sf-place-pkg-card:hover .sf-place-pkg-card__media img {
    transform: scale(1.03);
}

.sf-place-pkg-card__badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 1;
}

.sf-place-pkg-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.75rem 0.85rem 0.85rem;
}

.sf-place-pkg-card__duration {
    margin: 0 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.sf-place-pkg-card__title {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.sf-place-pkg-card__meta {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.sf-place-pkg-card__footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid #eef2f6;
}

.sf-place-pkg-card__price-label {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
}

.sf-place-pkg-card__price-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.sf-place-pkg-card__price-suffix {
    font-size: 0.7rem;
    color: #64748b;
}

.sf-place-pkg-card__actions {
    display: flex;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.sf-place-pkg-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sf-place-pkg-card__btn--outline {
    border: 1px solid var(--sf-primary);
    color: var(--sf-primary);
    background: #fff;
}

.sf-place-pkg-card__btn--outline:hover {
    background: rgba(0, 90, 141, 0.06);
}

.sf-place-pkg-card__btn--primary {
    border: 1px solid var(--sf-primary);
    background: var(--sf-primary);
    color: #fff;
}

.sf-place-pkg-card__btn--primary:hover {
    background: var(--sf-primary-hover);
    border-color: var(--sf-primary-hover);
}

.sf-place-empty-card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8edf2;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.sf-place-empty-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sf-place-empty-card p {
    color: #64748b;
    margin-bottom: 1.25rem;
}

.sf-place-themes {
    padding: 2rem 0;
    background: #fff;
}

.sf-place-themes__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.sf-place-theme-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    background: #f8fafc;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sf-place-theme-card:hover {
    border-color: rgba(0, 90, 141, 0.35);
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.sf-place-theme-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.sf-place-theme-card__icon--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 90, 141, 0.1);
    color: var(--sf-primary);
    font-size: 1.25rem;
}

.sf-place-theme-card__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
}

.sf-place-scroll-section {
    padding: 2rem 0;
}

.sf-place-scroll-section--muted {
    background: #f8fafc;
}

.sf-place-scroll-section__head {
    margin-bottom: 1rem;
}

.sf-place-scroll-carousel {
    position: relative;
}

.sf-place-scroll-carousel__frame {
    position: relative;
    padding: 0 clamp(1.35rem, 3.5vw, 2.25rem);
}

.sf-place-scroll-carousel__viewport {
    overflow: hidden;
}

.sf-place-scroll-swiper {
    overflow: visible;
}

.sf-place-scroll-swiper .swiper-slide {
    width: 200px;
    height: auto;
}

.sf-place-scroll-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid #c4c4c4;
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sf-place-scroll-carousel__nav:hover:not(.swiper-button-disabled) {
    background: #fafafa;
    border-color: #9ca3af;
    color: #1f2937;
}

.sf-place-scroll-carousel__nav--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.sf-place-scroll-carousel__nav--next {
    right: 0;
    transform: translate(50%, -50%);
}

.sf-place-scroll-carousel__nav.swiper-button-disabled {
    opacity: 0.32;
    pointer-events: none;
    box-shadow: none;
}

.sf-place-scroll-carousel__nav i {
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 700;
}

.sf-place-scroll-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-place-scroll-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.sf-place-scroll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-place-scroll-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.65rem 0.65rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.35;
}

.sf-place-faq-block {
    padding: 2.5rem 0;
    background: #fff;
}

.sf-place-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sf-place-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.sf-place-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 2.5rem 1rem 1.1rem;
    font-weight: 600;
    color: #0f172a;
    position: relative;
}

.sf-place-faq-item summary::-webkit-details-marker {
    display: none;
}

.sf-place-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--sf-primary);
}

.sf-place-faq-item[open] summary::after {
    content: '−';
}

.sf-place-faq-item[open] summary {
    background: rgba(0, 90, 141, 0.05);
    color: var(--sf-primary);
}

.sf-place-faq-item__body {
    padding: 0 1.1rem 1rem;
    color: #475569;
    line-height: 1.65;
    font-size: 0.95rem;
}

.sf-place-related-block {
    padding: 2rem 0 3rem;
}

.sf-place-related-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.sf-place-related-pill {
    display: inline-flex;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    background: rgba(0, 90, 141, 0.08);
    color: var(--sf-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.sf-place-related-pill:hover {
    background: var(--sf-primary);
    color: #fff;
}

.sf-place-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 1rem;
}

.sf-place-detail__media {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
}

.sf-place-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-place-detail__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sf-primary);
}

.sf-place-detail__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.sf-place-detail__desc {
    margin: 0 0 1.5rem;
    color: #475569;
    line-height: 1.7;
    font-size: 0.98rem;
}

.sf-place-detail__desc--muted {
    color: #64748b;
}

.sf-place-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sf-place-detail__more {
    margin: 1.25rem 0 0;
    text-align: center;
}

.sf-place-detail__more a {
    color: var(--sf-primary);
    font-weight: 600;
    text-decoration: none;
}

.sf-place-detail__more a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .sf-place-detail {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .sf-place-pkg-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .sf-mega-menu__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sf-place-page__head {
        grid-template-columns: 1fr;
    }

    .sf-place-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 2rem;
    }

    .sf-place-toolbar__field--search,
    .sf-place-toolbar__submit {
        grid-column: 1 / -1;
    }

    .sf-place-toolbar__submit {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .sf-place-toolbar__submit .sf-place-toolbar__label--spacer {
        display: none;
    }

    .sf-place-toolbar__submit .sf-place-toolbar__search {
        width: auto;
        flex: 1;
    }

    .sf-place-pkg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-place-themes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .sf-place-pkg-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sf-place-pkg-card {
        border-radius: 18px;
    }

    .sf-place-pkg-card__media {
        aspect-ratio: 16 / 10;
    }

    .sf-place-pkg-card__body {
        padding: 1rem 1.1rem 1.15rem;
    }

    .sf-place-pkg-card__duration {
        font-size: 0.72rem;
    }

    .sf-place-pkg-card__title {
        font-size: 1.08rem;
        line-height: 1.4;
    }

    .sf-place-pkg-card__meta {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }

    .sf-place-pkg-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding-top: 0.85rem;
    }

    .sf-place-pkg-card__price-label {
        font-size: 0.72rem;
    }

    .sf-place-pkg-card__price-value {
        font-size: 1.2rem;
    }

    .sf-place-pkg-card__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .sf-place-pkg-card__btn {
        width: 100%;
        min-height: 42px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .sf-place-block-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 575px) {
    .sf-place-toolbar-shell {
        width: calc(100% - 1rem);
        padding-inline: 0.25rem;
    }

    .sf-place-toolbar {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.15rem 1rem;
    }

    .sf-place-toolbar__field--search,
    .sf-place-toolbar__submit {
        grid-column: auto;
    }

    .sf-place-toolbar__submit .sf-place-toolbar__search {
        width: 100%;
    }

    .sf-place-themes__grid {
        grid-template-columns: 1fr;
    }

    .sf-place-pkg-card__actions {
        grid-template-columns: 1fr;
    }

    .sf-place-pkg-card__btn {
        min-height: 44px;
        font-size: 0.84rem;
    }
}

/* ── Package detail page (Flamingo-style) ── */
.sf-pkg-detail {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
    background: var(--sf-page-bg);
}

.sf-pkg-detail__top {
    margin-bottom: 1.25rem;
}

.sf-pkg-detail__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0.5rem 0 0.35rem;
    line-height: 1.15;
}

.sf-pkg-detail__tag {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

.sf-pkg-detail__hero {
    margin-bottom: 1.5rem;
}

.sf-pkg-detail__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 380px);
    gap: 1.5rem;
    align-items: start;
}

.sf-pkg-detail__carousel,
.sf-pkg-detail__carousel .carousel-inner,
.sf-pkg-detail__carousel .carousel-item {
    height: 100%;
    min-height: clamp(260px, 42vw, 480px);
}

.sf-pkg-detail__gallery {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.sf-pkg-detail__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-pkg-detail__carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    z-index: 2;
}

.sf-pkg-detail__carousel-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #94a3b8;
    opacity: 0.55;
    padding: 0;
}

.sf-pkg-detail__carousel-dots button.active {
    background: var(--sf-primary);
    opacity: 1;
    transform: scale(1.15);
}

.sf-pkg-detail__booking-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 6.5rem;
}

.sf-pkg-detail__booking-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.sf-pkg-detail__booking-price {
    margin: 0.15rem 0 0.65rem;
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.sf-pkg-detail__booking-price span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.sf-pkg-detail__booking-duration {
    margin: 0;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 600;
}

.sf-pkg-detail__field {
    display: block;
    margin-bottom: 0.75rem;
}

.sf-pkg-detail__field span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.sf-pkg-detail__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.sf-pkg-detail__input {
    width: 100%;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    font-size: 0.88rem;
    background: #fff;
}

.sf-pkg-detail__textarea {
    resize: vertical;
    min-height: 72px;
}

.sf-pkg-detail__cta {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.78rem 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.sf-pkg-detail__cta:hover {
    background: #be123c;
}

.sf-pkg-detail__trust {
    list-style: none;
    padding: 1rem 0 0;
    margin: 1rem 0 0;
    border-top: 1px solid #eef2f6;
    display: grid;
    gap: 0.45rem;
}

.sf-pkg-detail__trust li {
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.sf-pkg-detail__trust i {
    color: var(--sf-primary);
}

.sf-pkg-detail__nav {
    position: sticky;
    top: 4.5rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e8edf2;
    border-bottom: 1px solid #e8edf2;
    backdrop-filter: blur(8px);
    margin-bottom: 0.5rem;
}

.sf-pkg-detail__nav-inner {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0.65rem 0;
    scrollbar-width: none;
}

.sf-pkg-detail__nav-inner::-webkit-scrollbar {
    display: none;
}

.sf-pkg-detail__nav-link {
    flex-shrink: 0;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.sf-pkg-detail__nav-link:hover,
.sf-pkg-detail__nav-link.is-active {
    background: rgba(0, 90, 141, 0.1);
    color: var(--sf-primary);
}

.sf-pkg-detail__section {
    padding: 2.25rem 0;
    scroll-margin-top: 8.5rem;
}

.sf-pkg-detail__section--cream {
    background: rgba(27, 111, 160, 0.08);
}

.sf-pkg-detail__section--muted {
    background: #f8fafc;
}

.sf-pkg-detail__section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1.15rem;
}

.sf-pkg-detail__overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

.sf-pkg-detail__overview-copy p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
    font-size: 0.98rem;
}

.sf-pkg-detail__facts {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 0.35rem 1rem;
}

.sf-pkg-detail__fact {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef2f6;
    font-size: 0.9rem;
}

.sf-pkg-detail__fact:last-child {
    border-bottom: none;
}

.sf-pkg-detail__fact span {
    color: #64748b;
}

.sf-pkg-detail__fact strong {
    color: #0f172a;
    text-align: right;
}

.sf-pkg-detail__fact a {
    color: var(--sf-primary);
    text-decoration: none;
}

.sf-pkg-detail__itinerary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-pkg-detail__day {
    border: 1px solid rgba(27, 111, 160, 0.18);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.sf-pkg-detail__day summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 3rem 1rem 1.15rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
}

.sf-pkg-detail__day summary::-webkit-details-marker {
    display: none;
}

.sf-pkg-detail__day summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--sf-primary);
    color: var(--sf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

.sf-pkg-detail__day[open] summary::after {
    content: '−';
    background: var(--sf-primary);
    color: #fff;
}

.sf-pkg-detail__day-title {
    font-weight: 700;
    color: #0f172a;
}

.sf-pkg-detail__day-sub {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

.sf-pkg-detail__day[open] summary {
    background: #fff;
}

.sf-pkg-detail__day-body {
    padding: 0 1.15rem 1.1rem;
    color: #475569;
    line-height: 1.75;
    font-size: 0.95rem;
    border-top: 1px solid #eef2f6;
}

.sf-pkg-detail__split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.sf-pkg-detail__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.sf-pkg-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.5;
}

.sf-pkg-detail__list--yes i {
    color: #16a34a;
    margin-top: 0.15rem;
}

.sf-pkg-detail__list--no i {
    color: #dc2626;
    margin-top: 0.15rem;
}

.sf-pkg-detail__prose {
    color: #475569;
    line-height: 1.75;
    font-size: 0.95rem;
}

.sf-pkg-detail__similar-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sf-pkg-detail__similar-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
}

.sf-pkg-detail__similar-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.sf-pkg-detail__similar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-pkg-detail__similar-body h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.sf-pkg-detail__similar-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.sf-pkg-detail__similar-body h3 a:hover {
    color: var(--sf-primary);
}

.sf-pkg-detail__similar-body p {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
}

.sf-pkg-detail__similar-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
}

.sf-pkg-detail__similar-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.sf-pkg-detail__similar-btn {
    display: inline-flex;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sf-pkg-detail__similar-btn:hover {
    background: #be123c;
    color: #fff;
}

.sf-pkg-detail__popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sf-pkg-detail__popular-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
}

.sf-pkg-detail__popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.sf-pkg-detail__popular-card:hover img {
    transform: scale(1.04);
}

.sf-pkg-detail__popular-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.75rem 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .sf-pkg-detail__hero-grid {
        grid-template-columns: 1fr;
    }

    .sf-pkg-detail__booking-card {
        position: static;
    }

    .sf-pkg-detail__overview-grid,
    .sf-pkg-detail__split {
        grid-template-columns: 1fr;
    }

    .sf-pkg-detail__popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-pkg-detail__similar-row {
        grid-template-columns: 96px 1fr;
    }

    .sf-pkg-detail__similar-meta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .sf-pkg-detail__popular-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-place-page [data-aos],
    .sf-place-detail-page [data-aos],
    .sf-pkg-detail [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Global responsive safeguards ───────────────── */
.sf-page-prose table,
.sf-page-prose .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .table-responsive,
    .sf-pricing-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sf-pricing-table {
        min-width: 480px;
    }

    .sf-page-prose h2 {
        font-size: 1.2rem;
    }

    .sf-support-card,
    .sf-service-card {
        padding: 1.25rem 1.1rem;
    }
}