:root {
    --navy: #061d35;
    --navy-2: #082844;
    --navy-3: #0d385a;
    --gold: #c99b3d;
    --gold-2: #e3bd68;
    --cream: #fbf6ec;
    --sand: #efe3d1;
    --ivory: #fffaf2;
    --ink: #102033;
    --muted: #667085;
    --line: rgba(16, 32, 51, .12);
    --white: #fff;
    --black: #000;
    --offwhite: #fbf6ec;
    --soft-black: #1a1a1a;
    --deep-navy: #061d35;
    --ui: 'Inter', sans-serif;
    --serif: 'Playfair Display', serif;
    --shadow: 0 24px 70px rgba(6, 29, 53, .14);
    --shadow-soft: 0 14px 40px rgba(6, 29, 53, .10);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1320px;
    --header-h: 84px;
    --top-nav-h: 40px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fffaf2 0%, #fff 34%, #fbf6ec 100%);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit
}

::selection {
    background: rgba(201, 155, 61, .24);
    color: var(--navy)
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800
}

.skip-link:focus {
    top: 18px
}

.sr-only {
    position: absolute;
    left: -9999px
}

/* Header + Dropdowns */
.site-header {
    position: fixed;
    top: var(--top-nav-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: #fefbf5;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(227, 189, 104, .24);
    transition: .25s var(--ease)
}

.site-header.is-scrolled {
    height: 72px;
    background: #fefbf5;
    box-shadow: 0 12px 40px rgba(6, 29, 53, .22)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px
}

.brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18))
}

.brand-text {
    line-height: 1.05;
    color: #fff
}

.brand-name {
    display: block;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 23px
}

.brand-name strong {
    color: var(--gold-2)
}

.brand-glyphs {
    display: block;
    margin-top: 5px;
    color: var(--gold-2);
    letter-spacing: .18em;
    font-size: 13px;
    white-space: nowrap
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.mobile-nav-head,
.mobile-nav-cta,
.mobile-only {
    display: none
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px
}

.nav-link {
    position: relative;
    color: rgba(6, 29, 53, .97);
    padding: 12px 9px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 750;
    transition: .2s var(--ease);
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.site-header .container {
    width: 1487px;
    margin-inline: auto;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-item.is-open>.nav-link {
    color: #fff;
    background: rgba(255, 255, 255, .09)
}

.nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 6px;
    height: 2px;
    background: var(--gold-2);
    border-radius: 999px
}

.nav-dropdown-toggle {
    display: flex;
    align-items: start;
    gap: 5px
}

.chevron {
    font-size: 11px;
    opacity: .75;
    transition: .2s var(--ease)
}

.has-dropdown.is-open .chevron,
.has-dropdown:hover .chevron {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 330px;
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 250, 242, .985);
    border: 1px solid rgba(201, 155, 61, .24);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
    transition: .2s var(--ease)
}

.dropdown-menu.compact {
    width: 250px
}

.nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
    background: transparent
}

.has-dropdown.is-open>.dropdown-menu,
.has-dropdown:hover>.dropdown-menu,
.has-dropdown:focus-within>.dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    background: transparent
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 34px;
    width: 18px;
    height: 18px;
    background: var(--ivory);
    border-left: 1px solid rgba(201, 155, 61, .22);
    border-top: 1px solid rgba(201, 155, 61, .22);
    transform: rotate(45deg)
}

.main-nav .has-dropdown:nth-of-type(4) .dropdown-menu {
    left: auto;
    right: 0
}

.main-nav .has-dropdown:nth-of-type(4) .dropdown-menu::after {
    left: auto;
    right: 34px
}

.dropdown-menu a {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3px;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--navy);
    transition: .18s var(--ease)
}

.dropdown-menu a:hover {
    background: rgba(201, 155, 61, .12);
    transform: translateX(3px);
    color: #082844;
}

.dropdown-menu strong {
    font-size: 14px;
    line-height: 1.2
}

.dropdown-menu span {
    font-size: 12px;
    color: #667085;
    line-height: 1.35
}

.dropdown-feature {
    margin-top: 4px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff !important
}

.dropdown-feature:hover {
    background: linear-gradient(135deg, var(--navy-2), var(--navy-3)) !important
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 13px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 900;
    font-size: 14px;
    transition: .2s var(--ease);
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 12px 26px rgba(201, 155, 61, .26)
}

.btn-gold:hover {
    box-shadow: 0 16px 34px rgba(201, 155, 61, .34)
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .06)
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .60)
}

.btn-outline-dark,
.btn-dark-outline {
    color: var(--navy);
    border-color: rgba(6, 29, 53, .18);
    background: rgba(255, 255, 255, .72)
}

.btn-outline-dark:hover,
.btn-dark-outline:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: var(--shadow-soft)
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: .25s var(--ease)
}

.menu-toggle span {
    position: relative
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0
}

.menu-toggle span::before {
    top: -7px
}

.menu-toggle span::after {
    top: 7px
}

.menu-toggle.is-open span {
    background: transparent
}

.menu-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg)
}

.menu-toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg)
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 820px;
    padding-top: calc(var(--header-h) + 76px);
    padding-bottom: 86px;
    color: #fff;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(90deg, rgb(6 29 53 / 93%) 0%, rgb(6 29 53 / 57%) 34%, rgba(6, 29, 53, .20) 64%, rgba(6, 29, 53, .50) 100%), linear-gradient(180deg, rgba(6, 29, 53, .2), rgb(6 29 53 / 49%)), url() center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 68px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0), #fffaf247);
    pointer-events: none
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: radial-gradient(circle at 82% 28%, rgba(227, 189, 104, .28), transparent 24%), radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .09), transparent 30%);
    pointer-events: none
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 54px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 18px
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-2)
}

h1,
h2,
h3 {
    line-height: 1.05;
    margin: 0;
    color: inherit
}

.hero h1 {
    max-width: 720px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 7vw, 84px);
    letter-spacing: -.055em;
    text-wrap: balance
}

.gold-text {
    color: var(--gold-2)
}

.hero-lead {
    margin: 24px 0 0;
    max-width: 590px;
    color: rgba(255, 255, 255, .86);
    font-size: 19px;
    line-height: 1.75
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 44px;
    color: rgba(255, 255, 255, .86)
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800
}

.trust-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gold-2);
    border: 1px solid rgba(227, 189, 104, .35);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08)
}

.hero-card {
    position: relative;
    align-self: end;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 250, 242, .16), rgba(255, 250, 242, .07));
    border: 1px solid rgba(255, 255, 255, .20);
    padding: 16px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    display: block;
    color: #fff;
    transition: .25s var(--ease)
}

.hero-card:hover {
    transform: translateY(-6px)
}

.hero-card-inner {
    min-height: 390px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(6, 29, 53, .08), rgba(6, 29, 53, .82)), url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?auto=format&fit=crop&w=900&q=85') center/cover no-repeat;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden
}

.mini-label {
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(227, 189, 104, .94);
    color: var(--navy);
    font-weight: 900;
    font-size: 12px
}

.hero-card .mini-label {
    margin-bottom: auto
}

.hero-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    letter-spacing: -.04em
}

.hero-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .82)
}

.hero-card-cta {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: 13px;
    font-weight: 900
}

/* Global sections */
.section {
    padding: 90px 0;
    position: relative
}

.section-tight {
    padding: 60px 0
}

.section-head {
    max-width: 100%;
    margin: 0 auto 42px;
    text-align: center
}

.section-head.align-left {
    margin-left: 0;
    text-align: left
}

.split-head {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px
}

.section-kicker {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px
}

.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.045em;
    color: var(--navy);
    text-wrap: balance
}

.section-text {
    margin: 16px auto 0;
    max-width: 670px;
    color: var(--muted);
    font-size: 17px
}

.align-left .section-text,
.split-head .section-text {
    margin-left: 0
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--gold)
}

.ornament::before,
.ornament::after {
    content: "";
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold))
}

.ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent)
}

/* Tours */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.tour-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: .25s var(--ease)
}

.tour-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.tour-media {
    position: relative;
    aspect-ratio: 1.42/1;
    overflow: hidden
}

.tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s var(--ease)
}

.tour-card:hover .tour-media img {
    transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--navy);
    font-size: 12px;
    font-weight: 900
}

.tour-body {
    padding: 22px
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 13px;
    color: #7a6b53;
    font-size: 12px;
    font-weight: 800
}

.tour-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.035em;
    height: 57px;
}

.tour-card p {
    margin: 10px 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

.tour-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 16px
}

.price {
    font-size: 13px;
    color: var(--muted);
    font-weight: 700
}

.price strong {
    font-size: 24px;
    color: var(--gold);
    font-weight: 900
}

.circle-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-weight: 900
}

/* Premium why */
.why-premium-section {
    overflow: hidden
}

.premium-intro-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: end;
    margin-bottom: 26px
}

.premium-intro-copy {
    max-width: 760px
}

.premium-intro-copy .section-text {
    margin-left: 0
}

.premium-score-card {
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff;
    padding: 26px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.premium-score-card::after {
    content: "ð“‚€";
    position: absolute;
    right: -8px;
    bottom: -42px;
    font-size: 128px;
    color: rgba(227, 189, 104, .11)
}

.score-label {
    display: block;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em
}

.premium-score-card strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 64px;
    line-height: 1;
    margin-top: 12px
}

.score-stars {
    display: block;
    color: var(--gold-2);
    letter-spacing: .10em;
    margin-top: 8px
}

.premium-score-card small {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    margin-top: 8px
}

.why-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.why-luxury-card {
    position: relative;
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .64));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: .25s var(--ease)
}

.why-luxury-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.why-luxury-card.is-featured {
    background: linear-gradient(150deg, var(--navy), var(--navy-3));
    color: #fff
}

.why-luxury-card.is-featured p,
.why-luxury-card.is-featured .why-number {
    color: rgba(255, 255, 255, .72)
}

.why-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(201, 155, 61, .45);
    font-weight: 900;
    font-size: 38px;
    line-height: 1
}

.why-luxury-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold-2);
    box-shadow: 0 16px 36px rgba(6, 29, 53, .18);
    margin-bottom: 34px
}

.why-luxury-icon img {
    filter: brightness(0) invert(1);
}


.is-featured .why-luxury-icon {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14)
}

.why-luxury-card h3 {
    font-size: 22px;
    color: inherit;
    margin-bottom: 12px
}

.why-luxury-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

/* Destinations */
.dest-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 18px
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
    background: var(--navy)
}

.dest-card-large {
    grid-row: span 2
}

.dest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 29, 53, .05), rgba(6, 29, 53, .82))
}

.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: .45s var(--ease)
}

.dest-card:hover img {
    transform: scale(1.08)
}

.dest-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px
}

.dest-content span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 12px;
    font-weight: 900
}

.dest-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    letter-spacing: -.04em;
    max-width: 450px
}

.dest-card-large h3 {
    font-size: 42px
}

.dest-card em {
    display: inline-block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .88);
    font-weight: 900;
    font-style: normal;
    font-size: 13px
}

/* Custom tour builder */
.custom-tour-section {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 250, 242, .55), rgba(255, 255, 255, .78))
}

.custom-tour-wrap {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: stretch
}

.custom-tour-panel {
    background: rgba(255, 255, 255, .90);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 44px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 34px
}

.custom-tour-copy .section-title {
    font-size: clamp(38px, 5vw, 62px)
}

.custom-tour-copy .section-text {
    margin-left: 0;
    max-width: 760px
}

.custom-tour-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.journey-step {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .72));
    border: 1px solid var(--line)
}

.journey-step span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    background: rgba(201, 155, 61, .14);
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 14px
}

.journey-step h3 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px
}

.journey-step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.signature-experience {
    position: relative;
    min-height: 580px
}

.signature-image-card {
    position: absolute;
    inset: 0 0 56px 0;
    display: block;
    border: 10px solid #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    isolation: isolate;
    color: #fff
}

.signature-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 29, 53, .06) 0%, rgba(6, 29, 53, .25) 42%, rgba(6, 29, 53, .92) 100%)
}

.signature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s var(--ease)
}

.signature-image-card:hover img {
    transform: scale(1.06)
}

.signature-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 95px;
    z-index: 2
}

.signature-content h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.2vw, 46px);
    letter-spacing: -.045em;
    max-width: 520px;
    margin-top: 14px
}

.signature-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .82);
    max-width: 460px
}

.signature-bottom {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22)
}

.signature-bottom span {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    font-weight: 700
}

.signature-bottom strong {
    color: var(--gold-2);
    font-size: 24px
}

.signature-bottom em {
    font-style: normal;
    font-weight: 900;
    color: #fff
}

.floating-plan-box {
    position: absolute;
    left: -18px;
    bottom: 0;
    z-index: 4;
    width: min(350px, 88%);
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 55px rgba(6, 29, 53, .16)
}

.floating-plan-box strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 6px
}

.floating-plan-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55
}

/* Blog editorial */
.blog-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 250, 242, .72))
}

.editorial-blog-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 22px;
    align-items: stretch
}

.blog-feature-card,
.blog-mini-card,
.blog-newsletter-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: .25s var(--ease)
}

.blog-feature-card:hover,
.blog-mini-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.blog-feature-card a {
    display: grid;
    height: 100%;
    grid-template-rows: 1fr auto
}

.blog-feature-card img {
    width: 100%;
    height: 430px;
    object-fit: cover
}

.blog-feature-content {
    padding: 28px
}

.blog-tag {
    display: inline-flex;
    width: max-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .16)
}

.blog-tag.light {
    background: rgba(201, 155, 61, .14);
    color: var(--gold);
    border: 0
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #7a6b53;
    font-size: 12px;
    font-weight: 900;
    margin: 16px 0 12px
}

.blog-feature-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--navy);
    font-size: 36px;
    letter-spacing: -.04em
}

.blog-feature-card p,
.blog-mini-card p {
    color: var(--muted);
    margin: 12px 0 0
}

.blog-feature-card em {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold);
    font-weight: 900;
    font-style: normal
}

.blog-side-list {
    display: grid;
    gap: 16px
}

.blog-mini-card a {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 16px;
    padding: 14px;
    align-items: center
}

.blog-mini-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px
}

.blog-mini-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.035em;
    margin-top: 10px
}

.blog-mini-card p {
    font-size: 14px;
    line-height: 1.6
}

.blog-newsletter-card {
    padding: 26px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff
}

.blog-newsletter-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    letter-spacing: -.04em
}

.blog-newsletter-card p {
    color: rgba(255, 255, 255, .78);
    margin: 12px 0 20px
}

.blog-newsletter-card .section-kicker {
    color: var(--gold-2)
}

/* Reviews + FAQ */
.reviews-area {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    align-items: start;
    align-items: center;
}


.rating-card,
.review-card,
.faq-box,
.cta-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft)
}

.rating-card {
    padding: 32px
}

.rating-number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 54px;
    color: var(--navy);
    letter-spacing: -.04em;
    line-height: 1
}

.stars {
    color: var(--gold);
    font-size: 23px;
    letter-spacing: .08em;
    margin: 10px 0
}

.reviews-swiper {
    width: 100%;
    min-width: 0;
}

.review-card {
    height: auto;
    padding: 24px;
}

.quote {
    color: var(--gold);
    font-size: 34px;
    font-family: Georgia, serif;
    line-height: 1
}

.review-card p {
    margin: 10px 0 18px;
    color: #4b5870;
    font-size: 14px;
    line-height: 1.75;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    font-style: italic;
    height: 137px;
    overflow-y: auto;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sand), var(--gold-2));
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900
}

.person strong {
    display: block;
    color: var(--navy);
    font-size: 14px
}

.person span {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.faq-cta-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 26px
}

.faq-box {
    padding: 10px 24px
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-item:last-child {
    border-bottom: 0
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
    text-align: left
}

.faq-button .plus {
    font-size: 22px;
    color: var(--gold);
    transition: .2s var(--ease)
}

.faq-answer {
    display: none;
    padding: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

.faq-item.is-open .faq-answer {
    display: block
}

.faq-item.is-open .plus {
    transform: rotate(45deg)
}

/* details/summary FAQ accordion */
.c4t-faq-grid details {
    border-bottom: 1px solid var(--line);
}

.c4t-faq-grid details:last-of-type {
    border-bottom: 0;
}

.c4t-faq-grid details summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 0;
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
    font-size: 15px;
}

.c4t-faq-grid details summary::-webkit-details-marker {
    display: none;
}

.c4t-faq-grid details summary::after {
    content: '+';
    font-size: 22px;
    color: var(--gold);
    transition: transform .2s var(--ease);
    flex-shrink: 0;
}

.c4t-faq-grid details[open] summary::after {
    transform: rotate(45deg);
}

.c4t-faq-grid details .faq-answer {
    display: block;
    padding: 0 0 0px;
}

.faq-item-hidden {
    display: none !important;
}

.faq-fade-in {
    animation: fadeInFaq .25s ease;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c4t-faq-action {
    padding: 18px 0 6px;
    display: flex;
}

.faq-btn-icon {
    transition: transform .25s ease;
    vertical-align: middle;
}

.faq-btn-icon.rotated {
    transform: rotate(180deg);
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    color: #fff;
    background: linear-gradient(135deg, rgba(6, 29, 53, .97), rgba(13, 56, 90, .92)), url('https://images.unsplash.com/photo-1566288623394-377af472d81b?auto=format&fit=crop&w=900&q=80') center/cover no-repeat
}

.cta-card::after {
    content: "𓅓 𓂀 𓊖 𓋹 𓇳 𓈖 𓎛";
    position: absolute;
    right: 20px;
    bottom: -42px;
    color: rgba(227, 189, 104, .18);
    font-size: 190px;
    line-height: 1
}

.cta-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    letter-spacing: -.04em;
    max-width: 420px;
    position: relative;
    z-index: 1
}

.cta-card p {
    color: rgba(255, 255, 255, .82);
    max-width: 420px;
    position: relative;
    z-index: 1
}

.cta-card .btn {
    position: relative;
    z-index: 1;
    margin-top: 8px
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #fff;
    padding: 64px 0 20px;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 18%, rgba(201, 155, 61, .18), transparent 24%), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: auto, 80px 80px, 80px 80px;
    opacity: .8;
    pointer-events: none
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .8fr .85fr 1fr 1.15fr;
    gap: 34px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.footer-brand {
    max-width: 280px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.footer-logo .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px
}

.footer-text {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.75
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .06);
    font-weight: 900
}

.footer-col h3 {
    font-size: 15px;
    margin: 0 0 16px;
    color: #fff
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-links a,
.footer-links span {
    color: #fff;
    font-size: 14px
}

.footer-links a:hover {
    color: var(--gold-2);
    padding-left: 6px;
    letter-spacing: 2px;
}

.footer-links span:hover {
    color: var(--gold-2);
    padding-left: 6px;
    letter-spacing: 2px;
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.socials a svg {
    color: #fff;
    filter: #fff;
    -webkit-filter: #fff;
}

.newsletter input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border-radius: 12px;
    padding: 12px 13px;
    outline: none
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, .56)
}

.newsletter button {
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    cursor: pointer
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-top: 2px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    flex-wrap: wrap
}

.footer-bottom a {
    color: rgba(255, 255, 255, .70)
}

.footer-bottom a:hover {
    color: #fff
}

.floating-whatsapp {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1fae5b;
    box-shadow: 0 16px 34px rgba(31, 174, 91, .35);
    font-weight: 900;
    border: 4px solid #fff
}

/* Responsive */
@media (max-width:1180px) {
    :root {
        --container: 1040px
    }

    .nav-link {
        padding: 11px 9px;
        font-size: 13px
    }

    .brand {
        min-width: 210px
    }

    .hero-content {
        grid-template-columns: 1fr 330px;
        gap: 28px
    }

    .hero-card-inner {
        min-height: 340px
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 30px
    }

    .why-luxury-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {
    :root {
        --header-h: 76px
    }

    .container {
        width: min(100% - 32px, var(--container))
    }

    .site-header {
        height: 76px
    }

    .brand-mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px
    }

    .brand-name {
        font-size: 20px
    }

    .brand-glyphs {
        font-size: 11px;
        letter-spacing: .14em
    }

    .menu-toggle {
        display: flex
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 14px;
        background: rgba(6, 29, 53, .98);
        border: 1px solid rgba(227, 189, 104, .22);
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .25s var(--ease);
        max-height: calc(100vh - 98px);
        overflow: auto
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        border-radius: 0;
        padding-bottom: 23px;
        z-index: 9999;
    }

    .mobile-nav-head {
        display: grid;
        gap: 2px;
        padding: 8px 10px 12px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        margin-bottom: 4px
    }

    .mobile-nav-head span {
        font-weight: 900;
        font-size: 15px
    }

    .mobile-nav-head small {
        color: rgba(255, 255, 255, .64);
        font-weight: 600
    }

    .mobile-nav-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .10)
    }

    .mobile-nav-cta .btn {
        display: flex !important;
        width: 100%
    }

    .mobile-only {
        display: block
    }

    .mobile-dropdown-section {
        padding: 8px 0;
        border-bottom: 1px solid rgba(6, 29, 53, .08)
    }

    .mobile-dropdown-section:last-child {
        border-bottom: none
    }

    .mobile-dropdown-section strong {
        display: block;
        font-size: 12px;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-bottom: 6px;
        font-weight: 900
    }

    .mobile-dropdown-section a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        color: var(--navy);
        font-weight: 600
    }

    .mobile-dropdown-section a img {
        width: 18px;
        height: 13px;
        object-fit: cover;
        border-radius: 2px
    }

    .nav-open {
        overflow: hidden
    }

    .nav-item {
        width: 100%;
        min-height: 0;
        display: block
    }

    .nav-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, .86)
    }

    .dropdown-menu,
    .dropdown-menu.compact {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        padding: 6px;
        margin: 0 0 6px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: none
    }

    .dropdown-menu::before,
    .dropdown-menu::after,
    .nav-item.has-dropdown::after {
        display: none
    }

    .has-dropdown.is-open .dropdown-menu {
        display: grid;
        border-radius: 12px;
        margin-top: 5px;
        background-color: #fbf6ec;
        color: #000;
    }

    .dropdown-menu a {
        color: #082844;
        padding: 12px 13px;
        border-radius: 14px
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, .08);
        transform: none
    }

    .dropdown-menu span {
        color: rgba(255, 255, 255, .58)
    }

    .header-actions .btn {
        display: none
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 15px
    }

    .hero {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 70px
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero-card {
        max-width: 520px
    }

    .hero h1 {
        font-size: clamp(46px, 9vw, 70px)
    }

    .hero-lead {
        font-size: 17px
    }

    .tour-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .premium-intro-grid {
        grid-template-columns: 1fr
    }

    .why-luxury-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 230px 230px
    }

    .dest-card-large {
        grid-column: span 2;
        grid-row: auto
    }

    .custom-tour-wrap {
        grid-template-columns: 1fr
    }

    .custom-tour-panel {
        padding: 34px
    }

    .signature-experience {
        min-height: 520px
    }

    .editorial-blog-grid {
        grid-template-columns: 1fr
    }

    .reviews-area {
        grid-template-columns: 1fr
    }

    .faq-cta-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .split-head {
        align-items: flex-start;
        flex-direction: column
    }

    .split-head .btn {
        width: auto
    }

    .journey-steps {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media (max-width:640px) {
    body {
        line-height: 1.6
    }

    .container {
        width: min(100% - 24px, var(--container))
    }

    .site-header {
        height: 72px
    }

    .site-header.is-scrolled {
        height: 68px
    }

    .brand {
        gap: 9px;
        min-width: 0
    }

    .brand-mark {
        width: 45px;
        height: 45px;
        flex-basis: 45px
    }

    .brand-name {
        font-size: 18px
    }

    .brand-glyphs {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 10px
    }

    .main-nav {
        top: 72px;
        left: 12px;
        right: 12px
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 54px
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(6, 29, 53, .94) 0%, rgba(6, 29, 53, .72) 48%, rgba(6, 29, 53, .58) 100%), url('') center/cover no-repeat
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: .12em;
        margin-bottom: 14px
    }

    .eyebrow::before {
        width: 24px
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -.045em
    }

    .hero-lead {
        font-size: 16px;
        margin-top: 18px
    }

    .hero-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 26px
    }

    .btn {
        width: 100%;
        min-height: 50px
    }

    .trust-strip {
        gap: 12px;
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr
    }

    .trust-item {
        font-size: 12px
    }

    .hero-card {
        max-width: none
    }

    .hero-card-inner {
        min-height: 320px
    }

    .section {
        padding: 64px 0
    }

    .section-tight {
        padding: 44px 0
    }

    .section-head {
        margin-bottom: 28px
    }

    .section-title {
        font-size: 34px
    }

    .section-text {
        font-size: 15px
    }

    .ornament::before,
    .ornament::after {
        width: 58px
    }

    .tour-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .tour-body {
        padding: 18px
    }

    .tour-card h3 {
        font-size: 23px
    }

    .premium-score-card {
        padding: 22px
    }

    .why-luxury-grid {
        grid-template-columns: 1fr
    }

    .why-luxury-card {
        min-height: auto;
        padding: 24px
    }

    .dest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px
    }

    .dest-card,
    .dest-card-large {
        grid-column: auto;
        min-height: 250px
    }

    .dest-card-large h3 {
        font-size: 30px
    }

    .custom-tour-panel {
        padding: 26px;
        border-radius: 26px
    }

    .custom-tour-copy .section-title {
        font-size: 38px
    }

    .custom-tour-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .signature-experience {
        min-height: 470px
    }

    .signature-image-card {
        border-width: 7px;
        border-radius: 26px
    }

    .signature-content {
        left: 20px;
        right: 20px;
        bottom: 84px;
    }

    .signature-content h3 {
        font-size: 30px
    }

    .signature-bottom {
        display: grid;
        gap: 8px
    }

    .floating-plan-box {
        left: 14px;
        right: 14px;
        width: auto;
        padding: 16px;
        border-radius: 20px
    }

    .blog-feature-card img {
        height: 260px
    }

    .blog-feature-content {
        padding: 22px
    }

    .blog-feature-card h3 {
        font-size: 30px
    }

    .blog-mini-card a {
        grid-template-columns: 1fr;
        padding: 12px
    }

    .blog-mini-card img {
        height: 190px
    }

    .rating-card,
    .review-card,
    .faq-box,
    .cta-card {
        border-radius: 22px
    }

    .rating-card {
        padding: 24px
    }

    .faq-box {
        padding: 4px 18px
    }

    .faq-button {
        font-size: 14px;
        line-height: 1.35;
        align-items: flex-start
    }

    .cta-card {
        padding: 28px
    }

    .cta-card h2 {
        font-size: 31px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .newsletter {
        display: grid;
        grid-template-columns: 1fr
    }

    .footer-bottom {
        display: grid;
        text-align: center;
        justify-content: center
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px
    }

    .mobile-nav-cta {
        grid-template-columns: 1fr
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }
}


/* =========================================================
   FINAL POLISH: Premium refinement, Egypt-only visuals, SVG icons
   ========================================================= */
:root {
    --header-h: 92px;
}

.site-header {
    height: var(--header-h);
    background: #fefbf5
}

.site-header.is-scrolled {
    height: 78px
}

.brand {
    min-width: 250px;
    gap: 14px
}

.brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px
}

.brand-name {
    font-size: 26px;
    letter-spacing: -.045em
}

.brand-glyphs {
    font-size: 13px;
    opacity: .9
}

.nav-link {
    font-size: 15px;
    padding: 13px 15px
}

.header-actions .btn {
    min-height: 50px;
    padding-inline: 24px;
    border-radius: 16px
}

.section {
    padding: 78px 0
}

.section-tight {
    padding: 54px 0
}

.hero {
    padding-top: calc(var(--header-h) + 70px);
    min-height: 790px
}

.hero h1 {
    max-width: 760px
}

.hero-card {
    transform: translateY(6px)
}

.tour-card,
.blog-feature-card,
.blog-mini-card,
.rating-card,
.review-card,
.faq-box,
.cta-card {
    border-color: rgba(16, 32, 51, .10)
}

.tour-media img,
.dest-card img,
.blog-feature-card img,
.blog-mini-card img,
.signature-image-card img {
    filter: saturate(.96) contrast(1.03)
}

.why-premium-section {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(251, 246, 236, .58))
}

.why-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 10%, rgba(201, 155, 61, .10), transparent 26%), radial-gradient(circle at 88% 22%, rgba(6, 29, 53, .07), transparent 25%);
    pointer-events: none
}

.why-premium-section>.container {
    position: relative
}

.premium-intro-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    margin-bottom: 28px
}

.premium-intro-copy {
    padding-right: 20px
}

.premium-intro-copy .section-title {
    max-width: 760px
}

.premium-score-card {
    border: 1px solid rgba(227, 189, 104, .28);
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.premium-score-card strong {
    font-size: 72px
}

.why-luxury-grid {
    gap: 20px
}

.why-luxury-card {
    min-height: 320px;
    padding: 30px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 250, 242, .82) 100%);
    border: 1px solid rgba(16, 32, 51, .09)
}

.why-luxury-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    opacity: .0;
    transition: .25s var(--ease)
}

.why-luxury-card:hover::before,
.why-luxury-card.is-featured::before {
    opacity: 1
}

.why-luxury-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    margin-bottom: 42px
}

.why-luxury-icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
    display: block
}

.why-luxury-card h3 {
    font-size: 23px
}

.why-number {
    font-size: 44px;
    right: 24px;
    top: 20px
}

.why-luxury-card.is-featured {
    box-shadow: 0 28px 80px rgba(6, 29, 53, .18)
}

.custom-tour-section {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 250, 242, .68), rgba(255, 255, 255, .90))
}

.custom-tour-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(201, 155, 61, .08) 1px, transparent 1px), linear-gradient(rgba(201, 155, 61, .06) 1px, transparent 1px), radial-gradient(circle at 82% 20%, rgba(6, 29, 53, .08), transparent 28%);
    background-size: 92px 92px, 92px 92px, auto;
    opacity: .65;
    pointer-events: none
}

.custom-tour-section>.container {
    position: relative
}

.custom-tour-panel {
    position: relative;
    overflow: hidden
}

.custom-tour-panel::after {
    content: "ð“‚€";
    position: absolute;
    right: 28px;
    top: 20px;
    color: rgba(201, 155, 61, .10);
    font-size: 124px;
    line-height: 1
}

.custom-tour-copy,
.journey-steps {
    position: relative;
    z-index: 1
}

.journey-step {
    transition: .22s var(--ease)
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft)
}

.signature-image-card {
    inset: 0 0 48px 0;
    border-width: 9px;
}

.floating-plan-box {
    left: 27px;
    bottom: 0;
}

.signature-content h3 {
    text-shadow: 0 14px 34px rgba(0, 0, 0, .25)
}

.blog-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(251, 246, 236, .75));
    padding-top: 72px
}

.editorial-blog-grid {
    gap: 24px
}

.blog-feature-card,
.blog-mini-card,
.blog-newsletter-card {
    border-radius: 30px
}

.blog-feature-card img {
    height: 327px
}

.blog-side-list {
    grid-template-rows: auto auto 1fr
}

.blog-newsletter-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.blog-mini-card a {
    grid-template-columns: 160px 1fr
}

.blog-mini-card img {
    height: 142px
}

.blog-feature-card h3 {
    font-size: 34px
}

.blog-mini-card h3 {
    font-size: 23px
}

.reviews-area {
    gap: 22px
}

.rating-card {
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .78))
}

.review-card {
    position: relative;
    overflow: hidden
}

.review-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(201, 155, 61, .55), transparent);
    opacity: .55
}

.cta-card {
    background: linear-gradient(135deg, rgba(6, 29, 53, .98), rgba(13, 56, 90, .90)), url('https://images.unsplash.com/photo-1539650116574-75c0c6d47f6e?auto=format&fit=crop&w=900&q=80') center/cover no-repeat
}

@media (min-width:992px) {
    .nav-item {
        min-height: 78px
    }

    .dropdown-menu {
        top: calc(100% + 12px);
        left: 0 !important;
        right: auto !important;
        transform: translateY(8px) !important
    }

    .has-dropdown.is-open .dropdown-menu,
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu,
    .dropdown-menu:hover {
        transform: translateY(0) !important
    }

    .dropdown-menu::before {
        left: 32px;
        transform: rotate(45deg)
    }

    .nav-item:nth-of-type(4) .dropdown-menu {
        left: auto !important;
        right: 0 !important
    }

    .nav-item:nth-of-type(4) .dropdown-menu::before {
        left: auto;
        right: 34px
    }
}

@media (max-width:1180px) {
    .brand {
        min-width: 220px
    }

    .brand-mark {
        width: 56px;
        height: 56px;
        flex-basis: 56px
    }

    .brand-name {
        font-size: 23px
    }

    .why-luxury-card {
        min-height: 280px
    }
}

@media (max-width:991px) {
    :root {
        --header-h: 76px
    }

    .site-header {
        height: 76px
    }

    .site-header.is-scrolled {
        height: 72px
    }

    .hero {
        padding-top: 132px
    }

    .brand {
        min-width: 0
    }

    .brand-mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px
    }

    .brand-name {
        font-size: 20px
    }

    .premium-intro-copy {
        padding-right: 0
    }

    .premium-score-card {
        min-height: auto
    }

    .why-luxury-card {
        min-height: auto
    }

    .blog-section {
        padding-top: 62px
    }

    .editorial-blog-grid {
        grid-template-columns: 1fr
    }

    .blog-feature-card img {
        height: 360px
    }

    .blog-mini-card a {
        grid-template-columns: 190px 1fr
    }

    .blog-mini-card img {
        height: 150px
    }
}

@media (max-width:640px) {
    .section {
        padding: 58px 0
    }

    .section-tight {
        padding: 42px 0
    }

    .hero {
        padding-top: 112px
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px
    }

    .brand-name {
        font-size: 18px
    }

    .hero-card-inner {
        min-height: 300px
    }

    .premium-score-card strong {
        font-size: 58px
    }

    .why-luxury-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 28px
    }

    .why-luxury-icon svg {
        width: 30px;
        height: 30px
    }

    .why-luxury-card {
        padding: 24px
    }

    .custom-tour-panel {
        padding: 24px
    }

    .custom-tour-copy .section-title {
        font-size: 36px
    }

    .signature-experience {
        min-height: 508px;
    }

    .floating-plan-box {
        left: 12px;
        right: 12px
    }

    .blog-feature-card img {
        height: 240px
    }

    .blog-mini-card a {
        grid-template-columns: 1fr
    }

    .blog-mini-card img {
        height: 185px
    }

    .blog-section {
        padding-top: 56px
    }
}



/*=========================================================
   Start Premium Bottom Mobile Navigation Menu
=========================================================*/
.menu__mobile {
    display: none;
}

@media (max-width: 760px) {

    body {
        padding-bottom: 74px !important;
    }

    .c4t-hero {
        min-height: 438px;
        align-items: center;
    }

    .menu__mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 100;
        background: rgba(10, 35, 66, 0.97);
        /* Luxurious Deep Navy */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 169, 97, 0.35);
        /* Antique Gold accent line */
        box-shadow: 0 -8px 32px rgba(10, 35, 66, 0.25);
        padding: 10px 12px clamp(10px, 3.5vw, 18px);
        /* Responsive bottom padding for notch screens */
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .c4t-footer {
        padding-bottom: 90px;
    }

    .c4t-floating-actions {
        display: none;
    }

    .menu-mobile-fixed {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .menu-mobile-fixed a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        text-align: center;
        color: rgba(245, 239, 230, 0.7);
        /* Limestone Ivory with opacity */
        font-family: var(--ui);
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        text-decoration: none;
        gap: 5px;
        transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .menu-mobile-fixed a img {
        height: 21px;
        width: 21px;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1) opacity(0.7);
        transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .menu-mobile-fixed a:hover,
    .menu-mobile-fixed a:focus {
        color: var(--white);
    }

    .menu-mobile-fixed a:hover img {
        filter: brightness(0) invert(1) opacity(1);
        transform: translateY(-2px);
    }

    /* .menu-mobile-fixed a[href*="tailorMade"] {
        color: var(--antique-gold) !important;
        font-weight: 700;
    } */

    .menu-mobile-fixed a[href*="wa.me"]:hover img {
        filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.9)) brightness(0) invert(1) opacity(1);
    }

    .c4t-floating-actions {
        display: none !important;
    }

    .scroll-top.active {
        bottom: 85px !important;
        right: 20px !important;
        height: 50px !important;
        width: 50px !important;
    }

    .c4t-intro {
        padding-top: 0;
        padding-bottom: 32px;
    }

}

/*=========================================================
   End Premium Bottom Mobile Navigation Menu
=========================================================*/
/*=========================================================
   Start Scroll To Top
=========================================================*/
#scroll-percentage {
    position: absolute;
}

.scroll-top {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
}

.scroll-top.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
    transition: 0.3s;
}

.scroll-top-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--navy);
    color: #ffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}

.scroll-top-value i {
    font-size: 20px;
}

.scroll-top * {
    pointer-events: none;
}

@-webkit-keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/*=========================================================
   End  Scroll To Top
=========================================================*/


.c4t-floating-actions {
    position: fixed;
    right: auto;
    bottom: 22px;
    z-index: 999;
    display: grid;
    gap: 10px;
    left: 20px;
}

.c4t-float-btn.whatsapp {
    /* background: #25D366; */
    /* color: #fff; */
}

.c4t-float-btn {
    font-size: 0;
    color: transparent;
}

/* .c4t-float-btn.chat {
    background: rgba(10, 35, 66, .94);
} */

/* .c4t-float-btn.chat {
    background: var(--deep-navy);
    color: var(--limestone-ivory);
} */

.c4t-float-btn {
    /* font-size: 0; */
    /* color: transparent; */
}

.c4t-float-btn img {
    width: 57px;
    height: 46px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* .site-footer .container {
    width: 1555px;
}

@media (max-width: 640px) {
    .site-footer .container {
        width: min(100% - 24px, var(--container));
    }
}

@media (max-width: 991px) {
    .site-footer .container {
        width: min(100% - 32px, var(--container));
    }
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .container {
          width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
    }
} */

.site-footer .container {
    width: min(1555px, calc(100% - 40px));
    margin-inline: auto;
}

#faq {
    background: linear-gradient(180deg, rgba(233, 213, 180, 0.68), rgba(255, 255, 255, .90));
    ;
}


/* --- Swiper Styling --- */
.reviews-swiper {
    width: 100%;
    padding: 40px 20px 60px !important;
}

.testimontails .swiper-slide {
    display: flex;
    justify-content: center;
}


/* Navigation Colors */

.reviews .swiper-pagination {
    bottom: -5px;
}

.reviews .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.reviews .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.reviews .swiper-button-next,
.reviews .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    border: 5px solid var(--white-color);
    transition: all 0.3s ease;
}

.reviews .swiper-button-next {
    right: 0;
    opacity: 0;
}

.reviews .swiper-button-prev {
    left: 0;
    opacity: 0;
}

.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
    font-size: 16px;
    color: var(--second-color);
    font-weight: 600;
}

.reviews-swiper:hover .swiper-button-next,
.reviews-swiper:hover .swiper-button-prev {
    /* background: var(--main-color);
  border-color: var(--main-color); */
    transform: scale(1.1);
    opacity: 1;
}

.reviews .swiper-button-next:hover:after,
.reviews .swiper-button-prev:hover:after {
    color: var(--white-color);
}

/*============================================
    end Reviews
==============================================*/
.brand-logo-img {
    display: block;
    width: clamp(250px, 22vw, 340px);
    max-width: 100%;
    max-height: 72px;
    height: 72px;
    width: 340px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
    /* filter: brightness(0) invert(1) opacity(0.7); */
    transition: filter 0.3s, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-footer .brand-logo-img {
    filter: brightness(0) invert(1) opacity(0.7);
    transition: filter 0.3s, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 991px) {
    .premium-intro-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        padding-bottom: 23px;
    }

    .footer-bottom {
        text-align: left;
    }

    .footer-bottom {
        gap: 0;
    }









}


/* ── Form inline errors (contact + tour-details) ── */
.td-field-error,
.c-field-error {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .12) !important;
}

.td-err-msg,
.c-err-msg {
    display: block;
    margin-top: 4px;
    color: #c0392b;
    font-size: 12px;
    font-weight: 700;
}

.td-err-msg::before,
.c-err-msg::before {
    content: "⚠ ";
}


.faq-category-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: start;
}

.faq-category-intro {
    position: sticky;
    top: 110px;
}

.tour-image-link {
    display: block;
}

.tour-image-link img {
    display: block;
    width: 100%;
}

.final-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(6, 29, 53, .97), rgba(13, 56, 90, .90)), url(https://images.unsplash.com/photo-1539650116574-75c0c6d47f6e?auto=format&fit=crop&w=1600&q=85) center / cover no-repeat;
    color: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.final-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* dark for sevices and why travel with us */
.dark .custom-tour-panel {
    background: var(--deep-navy);

    border: 0.5px solid #2a2d36;
}

.dark .section-kicker {
    color: #c8973a;
}

.dark .section-title {
    color: #f0ece3;
}

.dark .section-text {
    color: #8b8f9a;
}

.dark .btn-outline-dark {
    border-radius: 8px;
    border: 0.5px solid #3a3d48;
    background: transparent;
    color: #c8c5bc;
    text-decoration: none;
    transition: background 0.15s;
}

.dark .btn-outline-dark:hover {
    background: #1e2028;
    color: #c8c5bc;
}

.dark .btn-gold {
    background: #c8973a;
    color: #1a1200;
    transition: background 0.15s;
}

.dark .btn-gold:hover {
    background: #d4a54a;
    color: #1a1200;
}

.dark .journey-step {
    background: var(--deep-navy);
    border: 0.5px solid #2a2d36;
}

.dark .journey-step span {
    color: #c8973a;
}

.dark .journey-step h3 {
    color: #ddd9d0;
}

.dark .journey-step p {
    color: #fff;
}

/* ── Dark Mode: Floating Plan Box (bottom-right) ───────────────────────── */

.dark .floating-plan-box {
    background: var(--deep-navy);
    border: 0.5px solid #2a2d36;
}

.dark .floating-plan-box strong {
    display: block;
    font-weight: 600;
    color: #f0ece3;
}

.dark .floating-plan-box span {
    color: #8b8f9a;
}

/* Optional: add a CTA button inside floating-plan-box if needed */
.dark .floating-plan-box a {
    background: #c8973a;
    color: #1a1200;
    transition: background 0.15s;
}

.dark .floating-plan-box a:hover {
    background: #d4a54a;
}


.slide-img-article {
    height: 220px !important;
    position: relative;
}

.slide-tag-article {
    position: absolute;
    top: 19px;
    left: 20px;
}

.slide-title-article {
    font-size: 22px !important;
    line-height: 1.3 !important;
}

.slide-description-article {
    font-size: small !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.slide-article-card .blog-feature-content {
    padding: 13px !important;
}

.slide-read-more {
    font-size: small !important;
}

.tourSwiper {
    padding-bottom: 40px !important;
}

.tourSwiper .swiper-pagination {
    bottom: -5px;
}

.tourSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.tourSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}


.categorySwiper {
    padding-bottom: 40px !important;
}

.categorySwiper .swiper-pagination {
    bottom: -5px;
}

.categorySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.categorySwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}



.subcategorySwiper {
    padding-bottom: 40px !important;
}

.subcategorySwiper .swiper-pagination {
    bottom: -5px;
}

.subcategorySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.subcategorySwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}


.articleSwiper {
    padding-bottom: 40px !important;
}

.articleSwiper .swiper-pagination {
    bottom: -5px;
}

.articleSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.articleSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}



.reviews-swiper {
    padding-bottom: 40px !important;
}

.reviews-swiper .swiper-pagination {
    bottom: -5px;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ink);
    opacity: 1;
    margin-top: 1rem;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}



@media (max-width: 760px) {
    .faq-category-grid {
        grid-template-columns: 1fr;
    }

    .faq-category-intro {
        position: relative;
        top: 0;
    }

    .final-cta-wrap {
        flex-direction: column;
    }

}

.blog-mini-card h3 {
    font-size: 23px;
    height: 48px;
}

.blog-mini-card p {
    font-size: 14px;
    line-height: 1.6;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.category-hero h1 {
    font-size: clamp(56px, 8vw, 70px);
}


.dest-card-large p {



    margin-bottom: 0px;



    font-size: 14px;



    line-height: 1.7;



    display: -webkit-box;



    -webkit-line-clamp: 3;



    -webkit-box-orient: vertical;



    overflow: hidden;



    text-align: start;



}



/* ===== Top Navigation Bar ===== */
.nav-output {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--top-nav-h);
    background: var(--navy);
    color: #fff;
    font-size: 0.82rem;
    font-family: var(--ui);
    display: flex;
    align-items: center;
}

.nav-output .container-fluid {
    width: 100%;
    max-width: 1487px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-output .contact-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-output .nav_icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
}

.nav-output .nav_icon i {
    font-size: 0.85rem;
    color: var(--gold);
}

.nav-output .nav_icon a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .2s;
}

.nav-output .nav_icon a:hover {
    color: var(--gold-2);
}

/* ===== Top Nav Dropdowns (vanilla, no Bootstrap) ===== */
.top-dropdown {
    position: relative;
}

.top-dropdown-toggle {
    cursor: pointer;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-family: inherit;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

.top-dropdown-toggle:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.top-dropdown-toggle img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
}

.top-dropdown-toggle .fa-coins {
    color: var(--gold);
    font-size: 0.85rem;
}

.top-dropdown-arrow {
    font-size: 0.6rem;
    transition: transform .25s ease;
    opacity: .7;
}

.top-dropdown.is-open .top-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu — hidden by default */
.top-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1050;
    min-width: 160px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

/* Visible when parent has .is-open */
.top-dropdown.is-open .top-dropdown-menu {
    display: block;
}

.top-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    color: var(--ink);
    font-size: 0.82rem;
    text-decoration: none;
    transition: background .15s;
}

.top-dropdown-menu li a img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
}

.top-dropdown-menu li a:hover {
    background: var(--cream);
}

/* Responsive top nav */
@media (max-width: 768px) {
    .nav-output {
        height: auto;
        padding: 6px 0;
    }

    .nav-output .contact-boxes {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .top-nav-left {
        gap: 12px;
    }

    .top-nav-right {
        gap: 8px;
    }

}


.old-price {
    font-size: 26px;
    color: #667085;
}.menu-toggle {
    border: 1px solid #c8973a;
    background: #7a6b53;
    color: #fff;

}

@media (max-width: 991px) {
    .site-header {
        height: 76px;
        top: 71px !important;
    }    .td-hero
    .site-header .container {
    width: auto;
    }
}
@media (max-width: 640px) {
    .hero {
        padding-top: 161px;
    }
}

@media (max-width: 991px) {
    .site-header {
        height: 76px;
        top: 71px !important;
        padding: 8px;
    }
    .nav-item.is-open>.nav-link{
    color: #fff;
    background: rgba(255, 255, 255, .09);
}
}


.tour-meta span{
    font-size: 16px;
}
.featured-tour .tour-meta span .old-price {
    font-size: 17px;
    color: #c8973a;
}

.nav-link:hover .nav-link:hover {
color: #2a2d36;
}

.nav-link:hover, .nav-link[aria-current="page"], .nav-item.is-open>.nav-link {
   color: #2a2d36;
    background: rgba(255, 255, 255, .09);
}

.nav-item.is-open>.nav-link {
    color:#fff;
    background: rgba(255, 255, 255, .09);
}
.nav-link:hover {
    color: #7a6b53;
    background: rgba(255, 255, 255, .09);
}


#mainNav .nav-link[aria-current="page"] {
    color: #c8973a;
}
