/* TravPage — Modern layout (Travelora-inspired premium travel UI) */

.tp-public[data-layout="classic"] {
    --tp-layout-card-shape: oval;
}

.tp-public[data-layout="modern"] {
    --tp-radius: 18px;
    --tp-radius-sm: 12px;
    --tp-radius-lg: 22px;
    --tp-nav-h: 76px;
    --tp-layout-card-shape: rectangle;
    --tp-font-display: 'DM Sans', system-ui, sans-serif;
    --tp-modern-gold: #d4a853;
    --tp-modern-navy: #0f172a;
    letter-spacing: -0.01em;
    background: #ffffff;
}

/* Hide classic-only bits */
.tp-public[data-layout="modern"] .tp-dest-oval__go { display: flex; }
.tp-public[data-layout="classic"] .tp-dest-oval__go { display: none; }
.tp-public[data-layout="modern"] .tp-section__footer-cta--classic-only { display: none; }

/* ── Navbar ── */
.tp-public[data-layout="modern"] .tp-nav--solid,
.tp-public[data-layout="modern"] .tp-nav[data-scrolled="true"] {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.tp-public[data-layout="modern"] .tp-nav--hero:not(.tp-nav--solid):not([data-scrolled="true"]) {
    background: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

.tp-public[data-layout="modern"] .tp-nav--hero:not(.tp-nav--solid):not([data-scrolled="true"]) .tp-nav__cta.tp-btn--outline {
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--tp-white);
    background: rgba(255, 255, 255, 0.12);
}

.tp-public[data-layout="modern"] .tp-nav--hero:not(.tp-nav--solid):not([data-scrolled="true"]) .tp-nav__cta.tp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--tp-white);
    color: var(--tp-white);
}

.tp-public[data-layout="modern"] .tp-nav__cta.tp-btn--primary {
    border-radius: var(--tp-radius-pill);
    padding: 0.45rem 0.95rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

.tp-public[data-layout="modern"] .tp-nav__cta.tp-btn--outline {
    border-radius: var(--tp-radius-pill);
    padding: 0.45rem 0.95rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-width: 1.5px;
}

/* ── Hero — full bleed + bottom search dock ── */
.tp-public[data-layout="modern"] .tp-hero {
    min-height: calc(100vh - var(--tp-nav-h));
    min-height: calc(100dvh - var(--tp-nav-h));
    align-items: stretch;
}

.tp-public[data-layout="modern"] .tp-hero__overlay {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.15) 45%, rgba(8, 8, 8, 0.55) 100%);
}

.tp-public[data-layout="modern"] .tp-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(980px, 92vw);
    max-width: none;
    min-height: calc(100vh - var(--tp-nav-h));
    min-height: calc(100dvh - var(--tp-nav-h));
    text-align: center;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    padding: 2rem 0;
}

.tp-public[data-layout="modern"] .tp-hero__copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
}

.tp-public[data-layout="modern"] .tp-hero__title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 0;
}

.tp-public[data-layout="modern"] .tp-hero__accent {
    color: var(--tp-modern-gold);
}

.tp-public[data-layout="modern"] .tp-hero__subtitle {
    display: none;
}

.tp-public[data-layout="modern"] .tp-hero__search-dock {
    width: 100%;
    margin-top: 0;
}

.tp-public[data-layout="modern"] .tp-hero__card--dock {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.24);
    overflow: hidden;
    background: var(--tp-white);
    min-height: clamp(240px, 32vh, 320px);
    display: flex;
    flex-direction: column;
}

/* Tabs row */
.tp-public[data-layout="modern"] .tp-hero__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    padding: 0.85rem 1.25rem 0;
    background: var(--tp-white);
    border-bottom: 1px solid var(--tp-gray-100);
}

.tp-public[data-layout="modern"] .tp-hero__tab {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.15rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--tp-gray-500);
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.tp-public[data-layout="modern"] .tp-hero__tab:hover {
    color: var(--tp-navy);
    background: var(--tp-gray-50);
}

.tp-public[data-layout="modern"] .tp-hero__tab.active {
    color: var(--tp-navy);
    background: var(--tp-gray-50);
}

.tp-public[data-layout="modern"] .tp-hero__tab.active::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: var(--tp-sky-dark);
}

.tp-public[data-layout="modern"] .tp-hero__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp-public[data-layout="modern"] .tp-hero__form-row {
    display: flex;
    align-items: flex-end;
    gap: 1.15rem;
    padding: 1.65rem 1.5rem 2rem;
}

.tp-public[data-layout="modern"] .tp-hero__form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 0.9rem;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.tp-public[data-layout="modern"] .tp-hero__form-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-public[data-layout="modern"] .tp-hero__form-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tp-public[data-layout="modern"] .tp-hero__form-actions {
    padding: 0;
    flex-shrink: 0;
}

.tp-public[data-layout="modern"] .tp-hero__form .tp-form-group {
    margin-bottom: 0;
}

.tp-public[data-layout="modern"] .tp-hero__form .tp-form-group label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tp-gray-500);
    margin-bottom: 0.45rem;
}

.tp-public[data-layout="modern"] .tp-hero__form .tp-form-control {
    border: 1px solid var(--tp-gray-200);
    border-radius: 12px;
    background: var(--tp-gray-50);
    padding: 0 1rem;
    height: 54px;
    font-size: 0.9rem;
    color: var(--tp-navy);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tp-public[data-layout="modern"] .tp-hero__form .tp-form-control:hover {
    border-color: var(--tp-gray-300);
    background: var(--tp-white);
}

.tp-public[data-layout="modern"] .tp-hero__form .tp-form-control:focus {
    border-color: var(--tp-sky-dark);
    background: var(--tp-white);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.08);
    outline: none;
}

.tp-public[data-layout="modern"] .tp-hero__search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    height: 54px;
    min-width: 168px;
    padding: 0 1.5rem;
    background: var(--tp-sky-dark);
    background-image: none;
    box-shadow: 0 6px 18px rgba(155, 27, 48, 0.22);
    white-space: nowrap;
}

.tp-public[data-layout="modern"] .tp-hero__search-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

/* ── Trust bar — dark stats strip ── */
.tp-public[data-layout="modern"] .tp-trust-bar {
    background: var(--tp-modern-navy);
    padding: 1.15rem 0;
    border-bottom: none;
}

.tp-public[data-layout="modern"] .tp-trust-bar__inner {
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.tp-public[data-layout="modern"] .tp-trust-item {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    gap: 0.5rem;
}

.tp-public[data-layout="modern"] .tp-trust-item i {
    color: var(--tp-modern-gold);
    font-size: 1rem;
}

/* ── Destinations — horizontal carousel cards ── */
.tp-public[data-layout="modern"] .tp-dest-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.tp-public[data-layout="modern"] .tp-dest-section-top .tp-section__header {
    margin-bottom: 0;
    text-align: left;
}

.tp-public[data-layout="modern"] .tp-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--tp-sky-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.5rem 0;
    transition: var(--tp-transition);
}

.tp-public[data-layout="modern"] .tp-view-all-link:hover {
    gap: 0.55rem;
    color: var(--tp-navy);
}

.tp-public[data-layout="modern"] .tp-section--destinations {
    background: #fafafa;
    padding-top: clamp(3.5rem, 6vw, 4.5rem);
}

.tp-public[data-layout="modern"] .tp-section--destinations .tp-section__eyebrow {
    background: var(--tp-sky-light);
    color: var(--tp-sky-dark);
}

.tp-public[data-layout="modern"] .tp-dest-ovals-strip {
    background: transparent;
    padding: 0 0 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.tp-public[data-layout="modern"] .tp-dest-ovals-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: max-content;
    min-width: 100%;
    padding: 0.25rem clamp(1rem, 4vw, calc((100vw - 1140px) / 2 + 1rem)) 1rem;
}

.tp-public[data-layout="modern"] .tp-dest-ovals-track .tp-dest-oval {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
}

.tp-public[data-layout="modern"] .tp-dest-oval {
    position: relative;
    text-align: left;
}

.tp-public[data-layout="modern"] .tp-dest-oval__frame {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0;
    border-radius: var(--tp-radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.tp-public[data-layout="modern"] .tp-dest-oval__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
    pointer-events: none;
}

.tp-public[data-layout="modern"] .tp-dest-oval__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tp-public[data-layout="modern"] .tp-dest-oval:hover .tp-dest-oval__frame img {
    transform: scale(1.07);
}

.tp-public[data-layout="modern"] .tp-dest-oval__name {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 3.5rem;
    z-index: 2;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tp-white);
    text-align: left;
    text-shadow: none;
}

.tp-public[data-layout="modern"] .tp-dest-oval__go {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tp-white);
    color: var(--tp-navy);
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: var(--tp-transition);
}

.tp-public[data-layout="modern"] .tp-dest-oval:hover .tp-dest-oval__go {
    background: var(--tp-sky-dark);
    color: var(--tp-white);
}

/* ── Sections ── */
.tp-public[data-layout="modern"] .tp-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.tp-public[data-layout="modern"] .tp-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tp-public[data-layout="modern"] .tp-section__title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.tp-public[data-layout="modern"] .tp-section--pattern {
    background: var(--tp-white);
    background-image: none;
}

/* ── Package cards ── */
.tp-public[data-layout="modern"] .tp-pkg-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tp-public[data-layout="modern"] .tp-pkg-card {
    border-radius: var(--tp-radius-lg);
    border: 1px solid var(--tp-gray-100);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.tp-public[data-layout="modern"] .tp-pkg-card__media {
    border-radius: 0;
}

.tp-public[data-layout="modern"] .tp-pkg-card__media img {
    aspect-ratio: 4/3;
}

.tp-public[data-layout="modern"] .tp-pkg-card__title {
    font-size: 1.05rem;
    font-weight: 700;
}

.tp-public[data-layout="modern"] .tp-pkg-card__price strong {
    color: var(--tp-navy);
    font-size: 1.2rem;
}

.tp-public[data-layout="modern"] .tp-pkg-card__dest {
    color: var(--tp-sky-dark);
    font-weight: 600;
}

.tp-public[data-layout="modern"] .tp-pkg-card__btn {
    display: inline-block;
}

.tp-public[data-layout="modern"] .tp-pkg-card__summary {
    display: -webkit-box;
}

.tp-public[data-layout="modern"] .tp-pkg-card__rating {
    margin-top: 0;
}

.tp-public[data-layout="modern"] .tp-pkg-card:hover {
    border-color: var(--tp-green-light);
}

/* ── Activities — premium cards ── */
.tp-public[data-layout="modern"] .tp-section--activities {
    background: #f8fafc;
}

.tp-public[data-layout="modern"] .tp-activities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tp-public[data-layout="modern"] .tp-activity-card {
    display: flex;
    flex-direction: column;
    background: var(--tp-white);
    border-radius: var(--tp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--tp-gray-100);
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tp-public[data-layout="modern"] .tp-activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.tp-public[data-layout="modern"] .tp-activity-card__media {
    overflow: hidden;
}

.tp-public[data-layout="modern"] .tp-activity-card__media .tp-card__img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.45s ease;
}

.tp-public[data-layout="modern"] .tp-activity-card:hover .tp-activity-card__media .tp-card__img {
    transform: scale(1.06);
}

.tp-public[data-layout="modern"] .tp-activity-card__body {
    padding: 1.15rem 1.2rem 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-public[data-layout="modern"] .tp-activity-card__cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-sky-dark);
    margin-bottom: 0.4rem;
}

.tp-public[data-layout="modern"] .tp-activity-card__body .tp-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.45rem;
}

.tp-public[data-layout="modern"] .tp-activity-card__price {
    font-size: 0.875rem;
    color: var(--tp-gray-500);
    margin: auto 0 0;
}

.tp-public[data-layout="modern"] .tp-section--activities .tp-btn--outline {
    margin-top: 0.5rem;
    border-radius: var(--tp-radius-pill);
    padding: 0.75rem 1.75rem;
}

/* ── Blog + FAQ split ── */
.tp-public[data-layout="modern"] .tp-section.tp-blog-faq {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tp-public[data-layout="modern"] .tp-blog-faq__blog-card {
    border-radius: var(--tp-radius-lg);
    border-color: var(--tp-gray-100);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.tp-public[data-layout="modern"] .tp-blog-faq__blog-card:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.tp-public[data-layout="modern"] .tp-blog-faq__faq .tp-faq-item {
    border-radius: var(--tp-radius);
}

/* ── Vibe With Us ── */
.tp-public[data-layout="modern"] .tp-section--vibe {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.65rem 1.5rem;
    border: 1px solid var(--tp-gray-100);
    background: var(--tp-white);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature__icon {
    margin: 0 0 1rem;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.2rem;
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.tp-public[data-layout="modern"] .tp-section--vibe .tp-feature p {
    line-height: 1.55;
}

/* ── Value / CTA dark block ── */
.tp-public[data-layout="modern"] .tp-cta-dark {
    background: var(--tp-modern-navy);
    border-radius: var(--tp-radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.tp-public[data-layout="modern"] .tp-cta-dark::before {
    background: radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 55%);
}

.tp-public[data-layout="modern"] .tp-cta-dark .tp-section__eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--tp-modern-gold);
}

/* ── Features / Why us ── */
.tp-public[data-layout="modern"] .tp-feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.tp-public[data-layout="modern"] .tp-feature {
    border-radius: var(--tp-radius);
    border: 1px solid var(--tp-gray-100);
    box-shadow: none;
    padding: 1.5rem;
}

.tp-public[data-layout="modern"] .tp-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.25rem;
}

/* ── Reviews ── */
.tp-public[data-layout="modern"] .tp-review {
    border-radius: var(--tp-radius-lg);
    border: 1px solid var(--tp-gray-100);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.tp-public[data-layout="modern"] .tp-section--muted {
    background: #fafafa;
}

/* ── Founder ── */
.tp-public[data-layout="modern"] .tp-founder {
    background: var(--tp-modern-navy);
    border-radius: var(--tp-radius-lg);
}

.tp-public[data-layout="modern"] .tp-founder__img {
    border-color: var(--tp-modern-gold);
}

/* ── Newsletter ── */
.tp-public[data-layout="modern"] .tp-newsletter {
    border-radius: var(--tp-radius-lg);
    background: var(--tp-gradient);
    padding: clamp(2.5rem, 5vw, 3.5rem);
}

.tp-public[data-layout="modern"] .tp-newsletter__form input {
    border-radius: var(--tp-radius-pill);
    border: none;
    padding: 0.9rem 1.25rem;
}

.tp-public[data-layout="modern"] .tp-newsletter__form .tp-btn--white {
    border-radius: var(--tp-radius-pill);
    color: var(--tp-navy);
    font-weight: 700;
}

/* ── Footer ── */
.tp-public[data-layout="modern"] .tp-footer {
    background: var(--tp-modern-navy);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3.5rem;
}

.tp-public[data-layout="modern"] .tp-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.tp-public[data-layout="modern"] .tp-footer a:hover {
    color: var(--tp-white);
}

.tp-public[data-layout="modern"] .tp-footer__title {
    color: var(--tp-white);
    font-weight: 700;
}

.tp-public[data-layout="modern"] .tp-footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
}

.tp-public[data-layout="modern"] .tp-social a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tp-white);
}

.tp-public[data-layout="modern"] .tp-social a:hover {
    background: var(--tp-sky-dark);
}

.tp-public[data-layout="modern"] .tp-footer__payments {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.tp-public[data-layout="modern"] .tp-footer__payments-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tp-public[data-layout="modern"] .tp-footer__payments-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.tp-public[data-layout="modern"] .tp-footer__payments-icons img {
    display: block;
    height: 28px;
    width: auto;
    border-radius: 4px;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tp-public[data-layout="modern"] .tp-footer__payments-icons img:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* ── Page hero ── */
.tp-public[data-layout="modern"] .tp-page-hero {
    background: var(--tp-gradient);
    text-align: left;
}

.tp-public[data-layout="modern"] .tp-page-hero .tp-container {
    max-width: 720px;
}

/* ── Buttons ── */
.tp-public[data-layout="modern"] .tp-btn {
    font-weight: 700;
    border-radius: var(--tp-radius-sm);
}

.tp-public[data-layout="modern"] .tp-btn--primary {
    background: var(--tp-sky-dark);
    background-image: none;
}

.tp-public[data-layout="modern"] .tp-btn--outline {
    border: 2px solid var(--tp-gray-200);
    color: var(--tp-navy);
    background: var(--tp-white);
}

.tp-public[data-layout="modern"] .tp-btn--outline:hover {
    border-color: var(--tp-sky-dark);
    color: var(--tp-sky-dark);
    background: var(--tp-sky-light);
}

/* ── Promo band ── */
.tp-public[data-layout="modern"] .tp-promo__script {
    font-family: var(--tp-font-display);
    font-style: normal;
    font-weight: 700;
    color: var(--tp-modern-gold);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .tp-public[data-layout="modern"] .tp-hero__form-grid,
    .tp-public[data-layout="modern"] .tp-hero__form-grid--3,
    .tp-public[data-layout="modern"] .tp-hero__form-grid--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-public[data-layout="modern"] .tp-hero__form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .tp-public[data-layout="modern"] .tp-hero__form-actions {
        margin-top: 0.25rem;
    }

    .tp-public[data-layout="modern"] .tp-hero__search-btn {
        width: 100%;
        min-width: 0;
    }

    .tp-public[data-layout="modern"] .tp-dest-section-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tp-public[data-layout="modern"] .tp-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-public[data-layout="modern"] .tp-section--vibe .tp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .tp-public[data-layout="modern"] .tp-hero__form-grid,
    .tp-public[data-layout="modern"] .tp-hero__form-grid--3,
    .tp-public[data-layout="modern"] .tp-hero__form-grid--compact {
        grid-template-columns: 1fr;
    }

    .tp-public[data-layout="modern"] .tp-hero__form-row {
        padding: 0.85rem 0.9rem 1rem;
    }

    .tp-public[data-layout="modern"] .tp-hero__tabs {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .tp-public[data-layout="modern"] .tp-hero__content {
        min-height: auto;
        padding-bottom: 1.5rem;
    }

    .tp-public[data-layout="modern"] .tp-dest-ovals-track .tp-dest-oval {
        flex: 0 0 180px;
        width: 180px;
    }

    .tp-public[data-layout="modern"] .tp-dest-oval__frame {
        height: 240px;
    }

    .tp-public[data-layout="modern"] .tp-trust-bar__inner {
        justify-content: center;
    }

    .tp-public[data-layout="modern"] .tp-activities-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }

    .tp-public[data-layout="modern"] .tp-activity-card {
        flex: 0 0 min(78vw, 280px);
        scroll-snap-align: start;
    }

    .tp-public[data-layout="modern"] .tp-section--vibe .tp-feature-grid {
        grid-template-columns: 1fr;
    }
}
