/* ═══════════════════════════════════════════════════
   Vayanta Holidays — New UI shared design patterns
   Load on all new-dashboard + new-customer pages
   See: resources/views/new-dashboard/upgraded_design/DESIGN_PATTERNS.md
   ═══════════════════════════════════════════════════ */

:root {
    /* NEW_DASHBOARD_TYPOGRAPHY_LAYOUT_SPEC.md */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --nd-gutter-x: 24px;
    --nd-gutter-x-tablet: 24px;
    --nd-gutter-x-mobile: 16px;
    --nd-container-max: 1240px;
    --ncp-shell-max: min(1680px, 100%);
    --ncp-sidebar-width: 220px;
    --nd-gap-half: var(--space-8);
    --nd-gap-section: var(--space-16);
    /* Spacing aliases — canonical rules in new-ui-spacing.css */
    --nui-gap-section: var(--space-16);
    --nui-gap-section-y: var(--space-8);
    --nui-gap-block: var(--space-8);
    --nui-gap-cards: var(--space-4);
    --nui-gap-tight: var(--space-6);
    --nd-radius-card: 16px;
    --nd-shadow-card: 0 2px 16px rgba(15, 23, 42, 0.06);
    --nd-shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.1);
    --nd-shadow-overlap: 0 16px 48px rgba(15, 23, 42, 0.1);
    --nd-color-chip: #d97706;
    --nd-color-link: #059669;
    --nd-color-link-hover: #047857;
    --nd-color-text: #0f172a;
    --nd-color-body: #334155;
    --nd-color-muted: #64748b;
    --nd-color-caption: #94a3b8;
    --nd-border: #e2e8f0;
    --nd-border-light: #e8edf2;
    --nd-bg-alt: #f8fafc;
    --nd-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nd-font-display: 'Playfair Display', Georgia, serif;
}

/* ── Container (single source) ── */
.container-nd,
.ab-container,
.ab-hero-inner,
.ab-stats-wrap,
.nd-dest-hero-inner,
.nd-dest-filter-wrap,
.nd-dest-grid-wrap,
.nd-dest-body,
.nd-cat-hero-inner,
.nd-cat-body,
.nd-cat-filter-wrap,
.nic-hero-inner,
.nic-duration-wrap,
.nic-body,
.nid-hero-inner,
.nid-duration-wrap,
.nid-body,
.nbl-hero-inner,
.nbl-body,
.nbl-filter-wrap,
.nbs-body,
.nbs-article-wrap,
.ct-container,
.ct-hero-inner,
.ct-info-row,
.nsr-hero-inner,
.nsr-body,
.nsr-filter-wrap,
.idx-inner,
.tc-hero-inner,
.tc-body,
.ntd-hero-inner,
.ntd-tabs-inner {
    max-width: var(--nd-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--nd-gutter-x);
    padding-right: var(--nd-gutter-x);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* ── Customer portal shell (full-width dashboard) ── */
.ncp-nav-inner {
    width: 100%;
    max-width: var(--ncp-shell-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--nd-gutter-x);
    padding-right: var(--nd-gutter-x);
    box-sizing: border-box;
}

.ncp-shell {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.ncp-main-inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.ncp-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e8f5f0;
}

.ncp-cover-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8f5f0;
}

/* ── Inner page base (NEW_DASHBOARD_TYPOGRAPHY_LAYOUT_SPEC) ── */
.nui-page,
.lp-page,
.ab-page,
.ct-page,
.tc-page,
.nbl-page,
.nbs-page,
.nic-page,
.nid-page,
.nd-dest-page,
.nd-cat-page,
.nsr-page {
    font-family: var(--nd-font);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--nd-color-body);
    background: #fff;
}

.nui-page h1,
.nui-page h2,
.nui-page h3,
.lp-page h1,
.lp-page h2,
.lp-page h3,
.ab-page h1,
.ab-page h2,
.ab-page h3,
.ct-page h1,
.ct-page h2,
.ct-page h3,
.tc-page h1,
.tc-page h2,
.tc-page h3,
.nbl-page h1,
.nbl-page h2,
.nbl-page h3,
.nbs-page h1,
.nbs-page h2,
.nbs-page h3 {
    font-family: var(--nd-font);
    color: var(--nd-color-text);
}

/* ── Section rhythm ── */
.nui-section,
.ab-section,
.ct-section,
.nbl-section,
.nbs-related,
.nd-dest-grid-section,
.nd-cat-section,
.nic-section,
.nid-section,
.nsr-results-section,
.lp-section {
    padding-block: var(--nd-gap-section);
}

@media (max-width: 991px) {
    .nui-section,
    .ab-section,
    .ct-section,
    .nbl-section,
    .nbs-related,
    .nd-dest-grid-section,
    .nd-cat-section,
    .nic-section,
    .nid-section,
    .nsr-results-section,
    .lp-section {
        padding-block: var(--space-12);
    }
}

@media (max-width: 575px) {
    .nui-section,
    .ab-section,
    .ct-section,
    .nbl-section,
    .nbs-related,
    .nd-dest-grid-section,
    .nd-cat-section,
    .nic-section,
    .nid-section,
    .nsr-results-section,
    .lp-section {
        padding-block: var(--space-8);
    }
}

.nui-section--alt,
.ab-section.bg-light,
.ct-section.bg-light {
    background: var(--nd-bg-alt);
}

/* ── Section chip (orange label) — all page variants ── */
.nui-chip,
.nd-dest-chip,
.nd-pkg-chip,
.nd-blog-chip,
.nd-why-chip,
.nd-styles-chip,
.ab-chip,
.ab-hero-chip,
.ab-cta-chip,
.ct-hero-chip,
.ct-form-chip,
.ct-section-chip,
.nbl-chip,
.nic-chip,
.nid-chip,
.nsr-chip,
.nd-cat-chip,
.tc-chip {
    display: block;
    color: var(--nd-color-chip);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Hero chips may sit on dark bg — keep orange */
.ab-hero-chip,
.ct-hero-chip,
.nbl-chip {
    display: inline-block;
}

/* ── Section title ── */
.nui-section-title,
.nd-dest-section-title,
.nd-pkg-section-title,
.nd-blog-section-title,
.nd-why-section-title,
.ab-title,
.ct-section-title,
.nbl-section-title,
.nic-section-title,
.nid-section-title,
.nd-cat-section-title,
.ntd-section-title,
.lp-section-header h2 {
    font-family: var(--nd-font);
    font-size: clamp(1.5rem, 2.8vw, 2.125rem);
    font-weight: 600;
    color: var(--nd-color-text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* ── Tour detail — match PACKAGE_DETAIL_UI_DESIGN_SPEC ── */
.ntd-body,
.ntd-tabs-bar,
.ntd-cta-bar,
.ntd-mobile-cta {
    font-family: var(--nd-font);
}
.ntd-hero-title {
    font-family: var(--nd-font-display);
    font-size: clamp(1.875rem, 3.8vw, 2.875rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.ntd-hero-subtitle {
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}
.ntd-hero-meta-item {
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 500;
}
.ntd-hero-breadcrumb {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-hero-badge {
    font-family: var(--nd-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.ntd-tab-btn {
    font-family: var(--nd-font);
    font-size: 12px;
    font-weight: 500;
}
.ntd-tab-btn.active {
    font-weight: 600;
}
.ntd-section-title {
    font-family: var(--nd-font);
    font-weight: 600;
}
.ntd-card-title,
.ntd-trip-card-title,
.ntd-journey-card-title,
.ntd-why-card-title,
.ntd-recent-card-title {
    font-family: var(--nd-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--nd-color-text);
    line-height: 1.3;
}
.ntd-about-text,
.ntd-itin-desc,
.ntd-incl-item,
.ntd-faq-a-inner {
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #475569;
}
.ntd-incl-group-title {
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--nd-color-text);
}
.ntd-faq-q {
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 500;
}
.ntd-hl-title {
    font-family: var(--nd-font);
    font-size: 12px;
    font-weight: 500;
    color: var(--nd-color-text);
}
.ntd-hl-desc {
    font-family: var(--nd-font);
    font-size: 10.5px;
    font-weight: 400;
    color: var(--nd-color-muted);
}
.ntd-price-card-title {
    font-family: var(--nd-font);
    font-size: 15px;
    font-weight: 600;
}
.ntd-price-card-sub {
    font-family: var(--nd-font);
    font-size: 11.5px;
    font-weight: 400;
    color: #94a3b8;
}
.ntd-price-wa-btn {
    font-family: var(--nd-font);
    font-weight: 600;
}
.ntd-price-cb-btn {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-price-feat {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-price-trust-text {
    font-family: var(--nd-font);
}
.ntd-price-trust-text strong {
    font-weight: 600;
}
.ntd-itin-day-title,
.ntd-itin-sub-title,
.ntd-journey-place,
.ntd-recent-name {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-itin-header,
.ntd-itin-header .ntd-itin-day-title,
.ntd-itin-header .ntd-itin-day-label,
.ntd-itin-header .ntd-itin-day-sub {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-itin-num {
    font-family: var(--nd-font);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.ntd-itin-item.open .ntd-itin-num {
    font-weight: 700;
}
.ntd-itin-day-label,
.ntd-itin-stat-label {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-itin-stat-val,
.ntd-trip-row-value {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-trip-row-label,
.ntd-journey-dist,
.ntd-recent-dur {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-why-item {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-cta-bar-title {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-cta-bar-sub {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-cta-wa-btn {
    font-family: var(--nd-font);
    font-weight: 600;
}
.ntd-cta-cb-btn {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-gallery-view-btn {
    font-family: var(--nd-font);
    font-weight: 500;
}
.ntd-mobile-cta-title {
    font-family: var(--nd-font);
    font-weight: 600;
}
.ntd-mobile-cta-sub,
.ntd-mobile-cta-price {
    font-family: var(--nd-font);
    font-weight: 400;
}
.ntd-mobile-cta-price strong {
    font-weight: 700;
}

/* Price banner + trust row (shared partial) */
.nd-pkg-banner-title,
.nd-pkg-banner-sub,
.nd-pkg-banner-hint,
.nd-pkg-banner-btn,
.nd-pkg-banner-247,
.nd-pkg-trust-title,
.nd-pkg-trust-desc {
    font-family: var(--nd-font);
}
.nd-pkg-banner-title {
    font-weight: 700;
    letter-spacing: -0.01em;
}
.nd-pkg-banner-sub {
    font-weight: 400;
}
.nd-pkg-banner-hint {
    font-weight: 600;
}
.nd-pkg-banner-btn {
    font-weight: 700;
}
.nd-pkg-trust-title {
    font-weight: 700;
}
.nd-pkg-trust-desc {
    font-weight: 400;
}

/* ── View all / green link ── */
.nui-view-all,
.nd-view-all,
.nd-dest-view-all,
.nbl-view-all,
.nd-cat-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nd-color-link);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.nui-view-all:hover,
.nd-view-all:hover,
.nd-dest-view-all:hover,
.nbl-view-all:hover,
.nd-cat-view-all:hover {
    color: var(--nd-color-link-hover);
    text-decoration: underline;
}

/* ── View Details CTA (cards) ── */
.nui-details-link,
.nd-dest-details,
.nd-pkg-details,
.nic-tour-btn-outline,
.nid-tour-btn-outline,
.nsr-tour-btn-outline,
.nbs-tour-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--nd-color-link);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.nui-details-link:hover,
.nd-dest-details:hover,
.nd-pkg-details:hover,
.nic-tour-btn-outline:hover,
.nid-tour-btn-outline:hover,
.nsr-tour-btn-outline:hover,
.nbs-tour-btn-outline:hover {
    color: var(--nd-color-link-hover);
    gap: 6px;
}

.nui-details-link i,
.nd-dest-details i,
.nd-pkg-details i,
.nic-tour-btn-outline i,
.nid-tour-btn-outline i,
.nsr-tour-btn-outline i,
.nbs-tour-btn-outline i {
    font-size: 10px;
}

/* ── Breadcrumb base ── */
.nui-breadcrumb,
.ab-breadcrumb,
.ct-breadcrumb,
.nbl-breadcrumb,
.nic-breadcrumb,
.nid-breadcrumb,
.nd-dest-breadcrumb,
.nd-cat-breadcrumb,
.nsr-breadcrumb,
.tc-breadcrumb,
.prop-breadcrumb,
.bkd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
}

.nui-breadcrumb a,
.ab-breadcrumb a,
.ct-breadcrumb a,
.nbl-breadcrumb a,
.nic-breadcrumb a,
.nid-breadcrumb a,
.nd-dest-breadcrumb a,
.nd-cat-breadcrumb a,
.nsr-breadcrumb a,
.tc-breadcrumb a {
    text-decoration: none;
    transition: color 0.2s;
}

.nui-breadcrumb i,
.ab-breadcrumb i,
.nbl-breadcrumb i,
.nic-breadcrumb i,
.nid-breadcrumb i,
.nd-dest-breadcrumb i,
.nsr-breadcrumb i {
    font-size: 9px;
    opacity: 0.8;
}

/* Light breadcrumb (on white hero) */
.nd-dest-breadcrumb,
.nd-dest-breadcrumb a {
    color: #64748b;
}

.nd-dest-breadcrumb a:hover {
    color: var(--nd-color-link);
}

.nd-dest-breadcrumb span {
    color: #475569;
    font-weight: 500;
}

/* Dark breadcrumb (on photo hero) */
.nui-breadcrumb--dark,
.ab-breadcrumb,
.ct-breadcrumb,
.nbl-breadcrumb,
.nic-breadcrumb,
.nid-breadcrumb,
.nsr-breadcrumb,
.tc-breadcrumb,
.ntd-breadcrumb {
    color: rgba(255, 255, 255, 0.7);
}

.nui-breadcrumb--dark a,
.ab-breadcrumb a,
.ct-breadcrumb a,
.nbl-breadcrumb a,
.nic-breadcrumb a,
.nid-breadcrumb a,
.nsr-breadcrumb a,
.tc-breadcrumb a,
.ntd-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.nui-breadcrumb--dark a:hover,
.ab-breadcrumb a:hover,
.ct-breadcrumb a:hover,
.nbl-breadcrumb a:hover,
.nic-breadcrumb a:hover,
.nid-breadcrumb a:hover,
.nsr-breadcrumb a:hover,
.tc-breadcrumb a:hover,
.ntd-breadcrumb a:hover {
    color: #fff;
}

.nui-breadcrumb--dark span,
.ab-breadcrumb span,
.ct-breadcrumb span,
.nbl-breadcrumb span,
.nic-breadcrumb span,
.nid-breadcrumb span,
.nsr-breadcrumb span,
.tc-breadcrumb span,
.ntd-breadcrumb span {
    color: rgba(255, 255, 255, 0.95);
}

/* ── Card base ── */
.nui-card,
.nd-dest-card,
.nd-pkg-card,
.nd-dest-list-card,
.nic-tour-card,
.nid-tour-card,
.nsr-tour-card,
.nbl-card,
.nbs-tour-card,
.enq-card,
.wl-card,
.prop-pkg-card,
.ntd-about-card,
.ntd-itin-card,
.ntd-incl-card,
.ntd-gallery-card,
.ntd-faq-card,
.ntd-trip-card,
.ntd-journey-card,
.ntd-why-card,
.ntd-recent-card,
.ntd-price-card,
.ntd-mobile-cta-card {
    background: #fff;
    border-radius: var(--nd-radius-card);
    border: 1px solid var(--nd-border-light);
    box-shadow: var(--nd-shadow-card);
    transition: box-shadow 0.28s, transform 0.28s;
}

.nui-card:hover,
.nd-dest-card:hover,
.nd-dest-list-card:hover,
.nic-tour-card:hover,
.nid-tour-card:hover,
.nsr-tour-card:hover,
.nbl-card:hover {
    box-shadow: var(--nd-shadow-card-hover);
}

/* ── Tour listing cards — click via data-tour-url + tour-card-clicks.blade.php ── */
.nd-dest-grid,
.nid-tours-grid,
.nic-tours-grid,
.nsr-tours-grid,
.nd-cat-grid,
.nd-why-features,
.nd-blog-grid,
.nd-styles-grid {
    align-items: stretch;
}

.nd-dest-card,
.nid-tour-card,
.nic-tour-card,
.nsr-tour-card,
.nbs-tour-card,
.nd-pkg-card,
.ab-why-card,
.ab-team-card,
.ab-award-card,
.ab-test-card {
    height: 100%;
    min-height: 0;
}

/* Package card body — equal height flex column so buttons always at bottom */
.nd-pkg-card-body,
.ab-why-body,
.ab-team-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.nd-pkg-card-foot,
.ab-why-actions {
    flex-shrink: 0;
    margin-top: auto;
}

[data-tour-url] {
    cursor: pointer;
}

.nd-dest-card-body,
.nid-tour-body,
.nic-tour-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.nd-dest-card-name-row,
.nid-tour-row1 {
    align-items: flex-start;
}

.nd-dest-card-name,
.nid-tour-name,
.nic-tour-name {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}

.nd-dest-card-name {
    line-height: 1.25;
    min-height: calc(1.25em * 2);
}

.nid-tour-name,
.nic-tour-name {
    line-height: 1.3;
    min-height: calc(1.3em * 2);
}

.nd-dest-card-desc,
.nid-tour-desc,
.nic-tour-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: calc(1.55em * 2);
    max-height: calc(1.55em * 2);
}

.nic-tour-desc {
    line-height: 1.5;
    min-height: calc(1.5em * 2);
    max-height: calc(1.5em * 2);
}

.nid-tour-place,
.nic-tour-place {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
    min-height: 18px;
    margin-bottom: 8px;
    overflow: hidden;
}

.nid-tour-place > span,
.nic-tour-place > span {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.nid-tour-place > i,
.nic-tour-place > i {
    flex-shrink: 0;
}

.nid-tour-place:empty,
.nic-tour-place:empty {
    visibility: hidden;
}

.nd-dest-card-meta,
.nid-tour-btns,
.nic-tour-btns {
    flex-shrink: 0;
    margin-top: auto;
}

.nid-tour-amenities {
    flex-shrink: 0;
    gap: var(--space-4, 16px);
}

.nid-tour-amen {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.01em;
}

.nid-tour-amen i {
    font-size: 13px;
    color: #059669;
    flex-shrink: 0;
}

.nd-dest-card-meta-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.01em;
}

.nd-dest-card-meta-item i {
    color: #059669;
    font-size: 12px;
    flex-shrink: 0;
}

.nd-dest-card-meta-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Tour card image duration strip (e.g. 5 Nights / 6 Days) */
.nid-tour-meta-bar,
.nic-tour-meta-bar {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.nid-tour-meta-bar i,
.nic-tour-meta-bar i {
    font-size: 11px;
    opacity: 1;
    flex-shrink: 0;
}

.nid-tour-rating {
    flex-shrink: 0;
}

/* ── Overlap bar (filter / duration / stats) ── */
.nui-overlap-wrap,
.ab-stats-wrap,
.nic-duration-wrap,
.nid-duration-wrap,
.nd-dest-filter-wrap,
.nd-cat-filter-wrap,
.nsr-filter-wrap {
    position: relative;
    z-index: 10;
    margin-top: -56px;
}

.nui-overlap-bar,
.ab-hero-stats,
.nic-duration-bar,
.nid-duration-bar,
.nd-dest-filter-bar,
.nd-cat-filter-bar,
.nsr-filter-bar {
    background: #fff;
    border-radius: var(--nd-radius-card);
    border: 1px solid var(--nd-border-light);
    box-shadow: var(--nd-shadow-overlap);
}

/* ── WhatsApp outline button (cards) ── */
.nui-wa-btn,
.nd-dest-wa-btn,
.nd-pkg-wa-btn,
.nic-tour-wa-btn,
.nid-tour-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 10px;
    min-height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--nd-color-link);
    background: #fff;
    color: var(--nd-color-link);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nui-wa-btn:hover,
.nd-dest-wa-btn:hover,
.nd-pkg-wa-btn:hover,
.nic-tour-wa-btn:hover,
.nid-tour-wa-btn:hover {
    background: var(--nd-color-link);
    color: #fff;
}

/* ── Carousel wrap (inner pages + homepage) ── */
.nui-carousel-wrap,
.nd-dest-carousel-wrap,
.nd-pkg-carousel-wrap,
.nid-more-carousel-wrap,
.ntd-gallery-carousel-wrap {
    position: relative;
    max-width: 100%;
    overflow: visible;
}

.nui-carousel,
.nd-dest-carousel,
.nd-pkg-carousel,
.nid-more-carousel,
.ntd-gallery-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
}

.nui-carousel::-webkit-scrollbar,
.nd-dest-carousel::-webkit-scrollbar,
.nd-pkg-carousel::-webkit-scrollbar,
.nid-more-carousel::-webkit-scrollbar,
.ntd-gallery-carousel::-webkit-scrollbar {
    display: none;
}

.nui-carousel-arr,
.nd-dest-arr,
.nd-pkg-arr,
.nid-more-arr {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--nd-border);
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1e293b;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    margin: 0;
    padding: 0;
}

.nui-carousel-arr:hover,
.nd-dest-arr:hover,
.nd-pkg-arr:hover,
.nid-more-arr:hover {
    background: var(--nd-color-link);
    color: #fff;
    border-color: var(--nd-color-link);
}

/* ── Customer portal page head ── */
.nui-page-head,
.ncp-page-head {
    margin-bottom: 24px;
}

.nui-page-title,
.ncp-page-title,
.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--nd-color-text);
    line-height: 1.2;
    margin-bottom: 6px;
}

.nui-page-sub,
.ncp-page-sub,
.page-sub {
    font-size: 14px;
    color: var(--nd-color-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   Inner pages — typography, padding & margin only
   NEW_DASHBOARD_TYPOGRAPHY_LAYOUT_SPEC.md
   ═══════════════════════════════════════════════════ */

/* Photo hero titles (about, contact, blog, search)
   Must use !important — .ab-page h1 / .ct-page h1 etc. have higher specificity (0,1,1)
   and would otherwise override with --nd-color-text (dark). */
.ab-hero-title,
.ct-hero-title,
.nbl-hero-title,
.nbs-hero-title,
.nsr-hero-title {
    font-family: var(--nd-font);
    font-size: clamp(1.875rem, 3.8vw, 3rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-3);
    color: #fff !important;
}

.ab-hero-sub,
.ct-hero-sub,
.nbl-hero-sub,
.nbs-hero-sub,
.nsr-hero-sub {
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 680px;
    margin: 0 auto;
}

/* Listing hero titles (destinations, categories) — typography.css sets Playfair display */
.nd-dest-hero-title,
.nd-cat-hero-title {
    font-family: var(--nd-font-display);
    font-size: clamp(1.875rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-3);
    color: var(--nd-color-text);
}

.nd-dest-hero-sub,
.nd-cat-hero-sub {
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--nd-color-muted);
    margin: 0;
}

.nd-cat-hero--photo .nd-cat-hero-title {
    color: #fff;
}
.nd-cat-hero--photo .nd-cat-hero-sub {
    color: rgba(255, 255, 255, .92);
}

/* Section subtitles & body copy */
.ab-sub,
.ct-form-sub,
.ct-section-sub,
.nbl-section-sub,
.nbs-excerpt,
.nd-dest-section-sub {
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--nd-color-muted);
}

.lp-section-header p,
.lp-section-header .section-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--nd-color-muted);
    margin: 0;
}

/* Small section headings inside content (terms, FAQ blocks) */
.tc-section-title {
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--nd-color-text);
    margin-bottom: var(--space-3);
}

/* Page body vertical rhythm */
.nic-body,
.nid-body,
.nsr-body,
.tc-body,
.nbl-body,
.nd-dest-body,
.nd-cat-body,
.nbs-article-wrap {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
}

@media (max-width: 991px) {
    .ab-hero-title,
    .ct-hero-title,
    .nbl-hero-title,
    .nbs-hero-title,
    .nsr-hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .nd-dest-hero-title,
    .nd-cat-hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .nic-body,
    .nid-body,
    .nsr-body,
    .tc-body,
    .nbl-body,
    .nd-dest-body,
    .nd-cat-body,
    .nbs-article-wrap {
        padding-top: var(--space-8);
        padding-bottom: var(--space-12);
    }
}

@media (max-width: 575px) {
    .ab-hero-title,
    .ct-hero-title,
    .nbl-hero-title,
    .nbs-hero-title,
    .nsr-hero-title {
        font-size: clamp(1.625rem, 6vw, 2rem);
    }

    .nd-dest-hero-title,
    .nd-cat-hero-title {
        font-size: 1.375rem;
    }

    .nic-body,
    .nid-body,
    .nsr-body,
    .tc-body,
    .nbl-body,
    .nd-dest-body,
    .nd-cat-body,
    .nbs-article-wrap {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }
}

/* ── Section head row ── */
.nui-section-head,
.nd-dest-section-head,
.nd-pkg-head,
.nd-blog-head,
.nd-cat-section-head,
.nbl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.ct-section-head,
.lp-section-header {
    margin-bottom: var(--space-8);
}

/* ── Primary green button ── */
.nui-btn-primary,
.nui-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 11px 22px;
    min-height: 44px;
    border-radius: 10px;
    background: var(--nd-color-link);
    color: #fff;
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.nui-btn-primary:hover,
.nui-btn-green:hover {
    background: var(--nd-color-link-hover);
    color: #fff;
}

/* ── Section head row ── */
.nui-section-head,
.nd-dest-section-head,
.nd-pkg-head,
.nd-blog-head,
.nd-cat-section-head,
.nbl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.ct-section-head,
.lp-section-header {
    margin-bottom: var(--space-8);
}
