.elementor-33 .elementor-element.elementor-element-9f96feb{margin:-10px 0px calc(var(--kit-widget-spacing, 0px) + -321px) 0px;}/* Start custom CSS for html, class: .elementor-element-9f96feb *//* =========================================================
   VOYANEST — TRIPS PAGE
   PREMIUM FULL-WIDTH VERSION
========================================================= */

:root {
    --teal: #0F4C5C;
    --dark-teal: #082F3A;
    --gold: #E8B86D;
    --gold-dark: #C8944D;
    --cream: #F8F6F1;
    --white: #FFFFFF;
    --text: #1E2933;
    --muted: #69767C;
    --border: #E6E1D8;
    --radius: 22px;
    --shadow: 0 18px 45px rgba(15, 76, 92, .10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================================================
   FULL WIDTH FIX
   Important when page is inside WordPress / Elementor
========================================================= */

.trips-hero,
.trips-cta {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}


/* =========================================================
   HERO
========================================================= */

.trips-hero {
    min-height: 680px;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;

    background-image:
        url("https://assets.lummi.ai/assets/QmPvFZXjn1dgHJswomCxhJEEtZFytzt4FS1SUHwBH57jH4?auto=format&w=1500");

    background-size: cover;
    background-position: center;
    overflow: hidden;

    isolation: isolate;
}


/* subtle cinematic movement */

.trips-hero::before {
    content: "";
    position: absolute;
    inset: -5%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: heroZoom 12s ease-in-out infinite alternate;
}


/* dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 31, 38, .90),
            rgba(5, 31, 38, .48),
            rgba(5, 31, 38, .16)
        );

    z-index: -1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: min(1180px, 90%);
    margin: auto;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}


/* eyebrow */

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;

    opacity: 0;
    animation: fadeUp .9s ease forwards;
}


/* hero heading */

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 8vw, 90px);
    line-height: 1.02;
    margin: 18px 0;
    font-weight: 600;

    opacity: 0;
    animation: heroTitle 1s cubic-bezier(.22, 1, .36, 1) .15s forwards;
}

.hero-content h1 em {
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}


/* hero paragraph */

.hero-content p {
    max-width: 590px;
    color: rgba(255,255,255,.83);
    font-size: 16px;
    margin-bottom: 30px;

    opacity: 0;
    animation: fadeUp .9s ease .35s forwards;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    opacity: 0;
    animation: fadeUp .9s ease .5s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 25px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.6);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--teal);
    transform: translateY(-4px);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    position: absolute;
    bottom: 28px;
    right: 5%;
    z-index: 2;

    font-size: 9px;
    letter-spacing: 3px;
    opacity: 0;

    animation: fadeIn 1s ease .8s forwards;
}


/* =========================================================
   INTRO
========================================================= */

.trip-intro {
    padding: 100px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.section-label {
    color: var(--gold-dark);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}

.intro-grid h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.15;
    margin-top: 12px;

    animation: fadeUp .8s ease both;
}

.intro-grid h2 span {
    color: var(--teal);
    font-style: italic;
}

.intro-text p {
    color: var(--muted);
    font-size: 16px;
    max-width: 530px;
    margin-bottom: 20px;

    animation: fadeUp .9s ease .15s both;
}

.text-link {
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;

    transition: .3s ease;
}

.text-link:hover {
    letter-spacing: .5px;
}


/* =========================================================
   CENTER HEADINGS
========================================================= */

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.center-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.15;
    margin-top: 10px;

    animation: fadeUp .8s ease both;
}

.center-heading h2 span {
    color: var(--teal);
    font-style: italic;
}

.center-heading p {
    color: var(--muted);
    margin-top: 15px;
    font-size: 14px;

    animation: fadeUp .8s ease .15s both;
}


/* =========================================================
   TRIP TYPES
========================================================= */

.trip-types {
    padding: 100px 0;
    background: white;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.type-card {
    padding: 32px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        background .35s ease;

    animation: cardReveal .8s ease both;
}

.type-card:nth-child(2) {
    animation-delay: .1s;
}

.type-card:nth-child(3) {
    animation-delay: .2s;
}

.type-card:nth-child(4) {
    animation-delay: .3s;
}

.type-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.type-icon {
    font-size: 32px;
    margin-bottom: 18px;
    transition: transform .4s ease;
}

.type-card:hover .type-icon {
    transform: translateY(-5px) scale(1.08);
}

.type-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.type-card p {
    color: var(--muted);
    font-size: 13px;
    margin: 8px 0 18px;
}

.type-card > span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   POPULAR TRIPS
========================================================= */

.popular-trips {
    padding: 100px 0;
    background: var(--cream);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.15;
    margin-top: 10px;
}

.section-heading h2 span {
    color: var(--teal);
    font-style: italic;
}

.section-heading > p {
    color: var(--muted);
    max-width: 390px;
    font-size: 14px;
}


/* =========================================================
   TRIP CARDS
========================================================= */

.trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trip-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease;

    animation: cardReveal .8s ease both;
}

.trip-card:nth-child(2) {
    animation-delay: .1s;
}

.trip-card:nth-child(3) {
    animation-delay: .2s;
}

.trip-card:nth-child(4) {
    animation-delay: .3s;
}

.trip-card:nth-child(5) {
    animation-delay: .4s;
}

.trip-card:nth-child(6) {
    animation-delay: .5s;
}

.trip-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow);
}

.trip-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.trip-image img {
    height: 100%;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.trip-card:hover .trip-image img {
    transform: scale(1.08);
}

.trip-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: white;
    color: var(--teal);

    padding: 6px 12px;
    border-radius: 30px;

    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;

    transition: transform .35s ease;
}

.trip-card:hover .trip-tag {
    transform: translateY(-3px);
}

.trip-content {
    padding: 25px;
}

.trip-location {
    color: var(--gold-dark);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.trip-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.2;
    margin: 6px 0;
}

.trip-content p {
    color: var(--muted);
    font-size: 13px;
    margin: 10px 0 18px;
}

.trip-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    padding: 13px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    font-size: 10px;
    color: var(--muted);
}

.trip-content > a {
    display: inline-block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    margin-top: 17px;

    transition: transform .3s ease;
}

.trip-content > a:hover {
    transform: translateX(5px);
}


/* =========================================================
   BUDGET SECTION
========================================================= */

.budget-section {
    padding: 100px 0;
    background: white;
}

.budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.budget-image {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.budget-image img {
    height: 100%;
    transition: transform 1s ease;
}

.budget-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    left: 25px;
    bottom: 25px;

    color: white;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 700;

    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.budget-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.12;
    margin-top: 12px;
}

.budget-content h2 span {
    color: var(--teal);
    font-style: italic;
}

.budget-content > p {
    color: var(--muted);
    font-size: 14px;
    margin: 22px 0;
}

.budget-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.budget-content li {
    margin: 10px 0;
    font-size: 13px;
}

.budget-content li span {
    color: var(--gold-dark);
    font-weight: 700;
    margin-right: 10px;
}


/* =========================================================
   QUICK TRIPS
========================================================= */

.quick-trips {
    padding: 100px 0;
    background: var(--cream);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);

    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        box-shadow .4s ease;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.quick-card.active {
    background: var(--teal);
    color: white;
    transform: translateY(-10px);
}

.quick-number {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.quick-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin: 8px 0;
}

.quick-card p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.quick-card.active p {
    color: rgba(255,255,255,.7);
}

.quick-card a {
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
}

.quick-card.active a {
    color: var(--gold);
}


/* =========================================================
   FINAL FULL-WIDTH CTA / BOTTOM IMAGE
========================================================= */

.trips-cta {
    min-height: 550px;
    position: relative;

    display: flex;
    align-items: center;

    text-align: center;
    color: white;

    background-image:
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* cinematic slow zoom */

.trips-cta::before {
    content: "";
    position: absolute;
    inset: -5%;

    background:
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;

    z-index: 0;

    animation: bottomZoom 14s ease-in-out infinite alternate;
}

.cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,35,43,.78),
            rgba(5,35,43,.55),
            rgba(5,35,43,.70)
        );

    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: auto;
}

.cta-content .section-label {
    color: var(--gold);

    opacity: 0;
    animation: fadeUp .8s ease forwards;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 70px);
    line-height: 1.08;
    margin: 15px 0;

    opacity: 0;
    animation: heroTitle 1s cubic-bezier(.22,1,.36,1) .15s forwards;
}

.cta-content h2 em {
    color: var(--gold);
    font-weight: 500;
}

.cta-content p {
    color: rgba(255,255,255,.75);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 14px;

    opacity: 0;
    animation: fadeUp .8s ease .35s forwards;
}

.cta-content .btn {
    opacity: 0;
    animation: fadeUp .8s ease .5s forwards;
}


/* =========================================================
   PREMIUM ANIMATIONS
========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: .7;
    }
}

@keyframes heroTitle {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

@keyframes bottomZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .type-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .budget-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .trips-hero {
        height: 650px;
        min-height: 650px;
    }

    .hero-content {
        width: 88%;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-bottom {
        display: none;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .type-grid {
        grid-template-columns: 1fr;
    }

    .trip-grid {
        grid-template-columns: 1fr;
    }

    .budget-image {
        height: 420px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card.active {
        transform: none;
    }

    .trips-cta {
        min-height: 480px;
    }

    .cta-content {
        width: 88%;
    }

    .cta-content h2 {
        font-size: 45px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
.trips-hero {
    margin-top: 0 !important;
}

.elementor-location-header {
    margin-bottom: 0 !important;
}

.elementor-location-header + * {
    margin-top: 0 !important;
}/* End custom CSS */