/* CSS for Upcoming Trips Page */

html {
    scroll-behavior: smooth;
}

/* --- Announcement Bar --- */
.trip-announcement-bar {
    position: relative;
    /* JS handles "fixed" state to calculate height correctly first */
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.announce-text {
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-timer {
    display: flex;
    gap: 5px;
    font-family: monospace;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

/* Responsive Announcement Bar */
@media (max-width: 900px) {
    .announcement-content {
        flex-direction: column;
        gap: 4px;
        line-height: 1.2;
    }

    .trip-announcement-bar {
        padding: 8px 0;
    }
}

/* ========================
   Hero Section
   ======================== */
.trip-hero {
    position: relative;
    padding: 12rem 1.5rem 6rem;
    text-align: center;
    overflow: hidden;
}

#hearts-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.trip-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trip-tag {
    display: inline-block;
    background-color: #a8bd62;
    color: #132a13;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0rem;
    border: 1px solid #132a13;
}

.sponsor-tag {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(65, 129, 238, 0.4) 100%);
    color: #424242;
    border: 0px solid #87CEEB;
    border-color: #87CEEB;
}

.letter-heart {
    position: relative;
    display: inline-block;
}

.letter-heart::before {
    content: '♥';
    position: absolute;
    top: -0.4em;
    left: -0.2em;
    transform: rotate(-25deg);
    font-size: 1.2em;
    color: #e85d75;
    line-height: 1;
    pointer-events: none;
}

.trip-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #052e16;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 1;
    color: #166534;
}

.trip-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto 0.7rem;
    line-height: 1.6;
}

.trip-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trip-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trip-date {
    display: inline-block;
    background-color: rgba(228, 252, 151, 0.6);
    color: #132a13;
    padding: 0.3rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 1.5rem 0 0 0;
}

.trip-location-details {
    display: inline-block;
    background-color: rgba(218, 255, 98, 0.7);
    color: #132a13;
    padding: 0.3rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #132a13;
}

.btn-primary {
    background-color: #BC6C25;
    color: #fefae0 !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #fefae0;
    color: #132a13 !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.arrow {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
    transform: translateX(4px);
}

/* Image Gallery */
.trip-gallery-wrapper {
    background-color: #fefae025;
    border: 8px solid #606C38;
    border-radius: 30px;
    padding: 0.3rem;
    box-shadow: 8px 8px 0px #0e1f0e;
}

.trip-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    height: 400px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-item:first-child {
    border-radius: 20px 0 0 20px;
}

.gallery-item:nth-child(2) {
    border-radius: 0;
}

.gallery-item:last-child {
    border-radius: 0 20px 20px 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {

    .trip-hero {
        padding: 10rem 0.5rem 4rem;
    }

    .trip-title {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .trip-subtitle {
        font-size: 1rem;
    }

    .trip-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item:first-child {
        border-radius: 20px 20px 0 0;
    }

    .gallery-item:nth-child(2) {
        border-radius: 0;
    }

    .gallery-item:last-child {
        border-radius: 0 0 20px 20px;
    }

    .trip-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}


/* ========================
   New Membership Gate Design
   ======================== */
.trip-membership {
    padding: 6rem 1.5rem;
}

.gate-card {
    background: #1a1a1a;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(32, 34, 33, 0.4);
}

/* Left Column */
.gate-left {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.gate-badge {
    display: inline-block;
    background: rgba(96, 108, 56, 0.1);
    color: #fefae0;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0rem;
    align-self: flex-start;
    border: 1px solid rgba(197, 231, 83, 0.2);
}

.gate-title {
    font-size: 3rem;
    color: #FEFAE0;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-weight: 700;
}

.gate-desc {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 90%;
    opacity: 0.9;
}

.gate-perks-list {
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-bottom: 2.5rem;
    display: grid;
    gap: 0.8rem;
}

.gate-perks-list li {
    color: #e2e8f0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.perk-icon {
    color: #fefae0;
    /* Gold/Cream accent */
    font-size: 1.2rem;
    line-height: 1;
}

.gate-benefits {
    display: flex;
    gap: 1rem;
}

.gate-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.gate-member-note {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Right Column */
.gate-right {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(70px);
    /* Subtle glass feel integration */
}

.gate-pricing-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2.5rem;
    width: 100%;
    /* max-width: 450px; */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
}

.gate-savings-pill {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #606c38;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gate-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
}

.gate-row-top {
    width: 100%;
}

.gate-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .gate-row.member .gate-row-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .gate-row.member .gate-row-bottom .gate-btn-primary {
        text-align: center;
        width: 100%;
    }
}

.gate-row.regular {
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem;
    margin: 1rem -1rem 0.5rem -1rem;
}

.gate-price-info {
    display: flex;
    flex-direction: column;
}

.gate-label {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gate-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FEFAE0;
}

.gate-btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid #FEFAE0;
    border-radius: 50px;
    color: #FEFAE0 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.gate-btn-outline:hover {
    border-color: #FEFAE0;
    color: #132a13 !important;
    background: #FEFAE0;
}

.gate-row.member {
    position: relative;
    background: #FEFAE0;
    margin: 1rem -1rem -1rem -1rem;
    padding: 1rem;
    border-radius: 20px;
}

.gate-divider {
    height: 1px;
    background-color: rgba(71, 71, 71, 0.2);
    margin: 1rem 0;
    width: 100%;
}

.gate-label-highlight {
    font-size: 0.75rem;
    color: #15803d;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gate-amount-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    color: #14532d;
}

.price-grid {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 0.4rem;
    row-gap: 0.2rem;
    align-items: baseline;
    width: fit-content;
}

.gate-amount-secondary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #14532d;
    justify-self: end;
}

.per-person,
.per-couple {
    font-size: 0.8rem;
    color: #15803d;
    font-weight: 600;
    text-transform: lowercase;
}

.gate-btn-primary {
    background: #132a13;
    color: #fefae0 !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(19, 42, 19, 0.2);
    transition: all 0.3s ease;
}

.gate-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(19, 42, 19, 0.3);
}

/* --- Pricing Countdown Timer --- */
.pricing-countdown {
    margin: 2rem -1rem -1rem -1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.countdown-label {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: monospace;
    /* Keeps numbers aligned */
}

.count-label {
    font-size: 0.65rem;
    color: #a0a0a0;
    text-transform: uppercase;
    margin-top: 2px;
}

.gate-airport-note {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-align: center;
    margin: 1.5rem 0 0 0;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 900px) {

    .trip-membership {
        padding: 3rem 0.5rem;
    }

    .gate-card {
        grid-template-columns: 1fr;
    }

    .gate-left {
        padding: 2rem 1.5rem;
    }

    .gate-right {
        padding: 2rem 0.5rem;
    }

    .gate-pricing-box {
        padding: 1rem;
        max-width: 100%;
    }

    .pricing-countdown {
        padding: 1rem;
    }

    .pricing-countdown {
        border-radius: 25px;
    }

    .gate-title {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .gate-desc {
        font-size: 1rem;
    }

    .gate-perks-list {
        margin-bottom: 2rem;
    }
}


/* ========================
   Booking Notice Section
   ======================== */
.booking-notice {
    padding: 0;
    background: linear-gradient(to right, #283618 50%, #1a1a1a 50%);
}

.booking-notice-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-notice-card {
    background: transparent;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: none;
}

/* Left: Notice Panel */
.notice-left {
    background: transparent;
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border-radius: 0;
}

.notice-tag {
    display: inline-block;
    color: #c5e753;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.notice-heading {
    font-size: 2rem;
    color: #FEFAE0;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.notice-subtext {
    font-size: 0.95rem;
    color: rgba(254, 250, 224, 0.6);
    line-height: 1.6;
    margin: 0;
    margin-top: 0.5rem;
}

/* Right: Perks Panel */
.notice-right {
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notice-right-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(254, 250, 224, 0.5);
    margin-bottom: 1.5rem;
}

.notice-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.notice-perks-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #FEFAE0;
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(254, 250, 224, 0.07);
}

.notice-perks-list li:last-child {
    border-bottom: none;
}

.notice-perk-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 231, 83, 0.08);
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .booking-notice {
        background: linear-gradient(to bottom, #283618 50%, #1a1a1a 50%);
    }

    .booking-notice-card {
        grid-template-columns: 1fr;
    }

    .notice-left {
        padding: 2.5rem 1.5rem;
    }

    .notice-heading {
        font-size: 1.5rem;
    }

    .notice-right {
        padding: 2rem 1.5rem;
    }
}


/* ========================
   Trip Included Section
   ======================== */
.trip-included {
    padding: 6rem 1.5rem;
}

.included-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.included-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.included-tag {
    display: inline-block;
    background-color: #a8bd62;
    color: #132a13;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0rem;
    border: 1px solid #132a13;
}

.included-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #052e16;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.included-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 0rem;
    margin-bottom: 1rem;
    max-width: 90%;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.inc-icon-box {
    width: 40px;
    height: 40px;
    background: #606C38;
    border-radius: 50%;
    border: 1px solid #606C38;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(96, 108, 56, 0.3);
}

.inc-icon-box img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.inc-text {
    display: flex;
    flex-direction: column;
}

.inc-text strong {
    font-size: 0.9rem;
    color: #132a13;
    margin-bottom: 0.2rem;
}

.inc-text span {
    font-size: 0.75rem;
    color: #6b7280;
}

.included-disclaimer {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Right Image */
.included-image-wrapper {
    position: relative;
    height: 750px;
    min-height: 700px;
    padding-top: 15px;
}

.inc-img-card {
    position: relative;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 8px 8px 30px rgba(46, 49, 35, 0.3);
}


.inc-img-card .fade-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeLoop 8s infinite;
}

/* Stagger animations */
.inc-img-card .fade-img:nth-child(1) {
    animation-delay: 0s;
}

.inc-img-card .fade-img:nth-child(2) {
    animation-delay: 4s;
}

@keyframes fadeLoop {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.inc-floating-badge {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: #606c38;
    line-height: 1;
}

.badge-txt {
    font-size: 0.9rem;
    color: #132a13;
    font-weight: 600;
    line-height: 1.2;
    max-width: 80px;
}

@media (max-width: 900px) {

    .trip-included {
        padding: 3rem 0.5rem;
    }

    .included-container {
        padding: 0 0rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .included-content {
        align-items: center;
        text-align: center;
    }

    .included-title {
        font-size: 2.3rem;
        font-weight: 600;
    }

    .included-list {
        text-align: left;
        margin-left: 1rem;
    }

    .included-image-wrapper {
        min-height: 350px;
        order: 1;
    }

    .inc-floating-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .badge-num {
        font-size: 1.5rem;
        font-weight: 700;
        color: #606c38;
        line-height: 1;
    }

    .badge-txt {
        font-size: 0.8rem;
        color: #132a13;
        font-weight: 600;
        line-height: 1.2;
        max-width: 80px;
    }
}


/* ===== About Resort Section ===== */
.about-resort {
    padding: 0 1rem 4rem 1rem;
}

.about-resort-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-resort-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.1rem;
}

.resort-title-highlight {
    font-family: var(--font-birthstone);
    font-weight: 400;
    font-size: 8rem;
    color: #606c38;
}

.about-resort-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.about-resort-text:last-child {
    margin-bottom: 0;
}

/* ===== Dining & Drinks Section ===== */
.dining-section {
    padding: 2rem 0 5rem 0;
    overflow: hidden;
}

.dining-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dining-image-wrapper {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dining-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.dining-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dining-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1.1;
    margin: 0 0 0 -0.4rem;
    letter-spacing: -0.3rem;
}

.dining-highlight {
    font-family: var(--font-birthstone);
    font-weight: 400;
    font-size: 8rem;
    color: #606c38;
    letter-spacing: -0.1rem;
}

.dining-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 0;
    margin-bottom: 1rem;
}

.dining-blocks-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dining-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-bottom: 0.5rem;
    cursor: default;
}

.d-number {
    font-size: 3rem;
    font-weight: 800;
    color: #606c38;
    line-height: 1;
    margin-bottom: 0.2rem;
    font-family: inherit;
}

.d-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #132a13;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.d-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    max-width: 150px;
}

/* Hover Underline Animation */
.dining-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #606c38;
    transition: width 0.3s ease;
}

.dining-block:hover::after {
    width: 100%;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.dining-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    border-left: 4px solid #606c38;
    padding-left: 1.5rem;
}

@media (max-width: 900px) {

    .dining-container {
        padding: 0 0.5rem;
    }

    .dining-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dining-content {
        align-items: center;
        text-align: center;
    }

    .dining-blocks-grid {
        justify-content: center;
    }

    .dining-block {
        align-items: center;
    }

    .d-desc {
        text-align: center;
    }

    .dining-image-wrapper {
        height: 350px;
        order: -1;
    }

    .dining-bg-image {
        background-attachment: fixed;
    }

    .dining-title {
        font-size: 3rem;
    }

    .dining-highlight {
        font-size: 4rem;
    }
}

/* ========================
   Resort Highlights (Horizontal Scroll)
   ======================== */
.resort-highlights {
    padding: 0rem 0 6rem 0;
    overflow: hidden;
}

.high-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    /* No padding on mobile for edge-to-edge swipe */
    position: relative;
    text-align: center;
}

.high-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1;
    margin-bottom: 3rem;
    letter-spacing: -0.3rem;
    padding: 0 1rem;
}

.high-highlight {
    font-family: var(--font-birthstone);
    font-weight: 400;
    font-size: 8rem;
    color: #606c38;
    letter-spacing: -0.1rem;
}

.high-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 1.5rem 4rem 1.5rem;
    /* Padding for card shadow/growth */
    margin: 0 auto;
    cursor: grab;
    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    -webkit-overflow-scrolling: touch;
}

.high-slider-container::-webkit-scrollbar {
    display: none;
}

.high-slider-container:active {
    cursor: grabbing;
}

.high-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.high-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 340px;
    max-width: 340px;
    height: 280px;
    text-align: center;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    /* For background image containment */
}

/* Background Image Layer (visible on all cards) */
.high-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 0;
}

/* Dark overlay for readability - darker for non-active cards */
.high-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 1;
    transition: background 0.4s ease;
    z-index: 1;
}

/* Lighter overlay on active card */
.high-card.active-card::after {
    background: rgba(0, 0, 0, 0.3);
}

/* Ensure content is above background */
.high-card>* {
    position: relative;
    z-index: 2;
}

/* White text on all cards (since background is always visible) */
.high-card .high-icon,
.high-card p {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
}

/* Brighter white text on active card */
.high-card.active-card .high-icon,
.high-card.active-card p {
    color: #fff;
}

.high-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    /* Light subtle text */
    pointer-events: none;
}

.high-card.active-card .high-number {
    color: #606c38;
    /* Green on active */
    opacity: 0.6;
}

/* Hover State for Non-Active Cards */
.high-card:hover {
    border-color: rgba(96, 108, 56, 0.5);
}

/* Active State Only */
.high-card.active-card {
    transform: scale(1.08);
    /* Slightly larger */
    box-shadow: 0 20px 40px -10px rgba(96, 108, 56, 0.2);
    border-color: #606c38;
    z-index: 2;
}

.high-icon {
    font-size: 1.5rem;
}

.high-card p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Progress Bar */
.high-progress-track {
    width: 200px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 10px;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
}

.high-progress-bar {
    height: 100%;
    background: #606c38;
    width: 0%;
    /* JS will update this */
    border-radius: 10px;
    transition: width 0.4s ease-out;
}

@media (max-width: 900px) {
    .high-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.1rem;
    }

    .high-highlight {
        font-size: 4rem;
    }

    .high-slider-container {
        /* Padding to allow peeking from sides */
        padding-left: calc(50% - 150px);
        padding-right: calc(50% - 150px);
    }

    .high-card {
        /* Smaller cards on mobile to allow peeking */
        min-width: 300px;
        max-width: 300px;
        height: 240px;
    }
}

@media (max-width: 900px) {

    .about-resort {
        padding: 2rem 0.5rem 4rem 0.5rem;
    }

    .about-resort-title {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 0.85;
        margin-bottom: 0;
    }

    .resort-title-highlight {
        font-size: 4.5rem;
    }
}


/* ========================
   trip-booking-card
   ======================== */
/* ========================
   Trip Itinerary Section
   ======================== */
.trip-itinerary {
    padding: 2rem 1.5rem 6rem 1.5rem;
}

.itinerary-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0rem;
}

.itinerary-header {
    text-align: center;
    margin-bottom: -2rem;
}

.section-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 0;
    letter-spacing: -0.3rem;
}

.iti-highlight {
    color: #606C38;
    font-size: 8rem;
    font-family: var(--font-birthstone);
    font-weight: 400;
}

.itinerary-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.itinerary-card {
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.itinerary-card:hover {
    transform: translateY(-5px);
}

.iti-icon {
    margin-bottom: 0rem;
}

.iti-icon img {
    width: 198px;
    height: 198px;
    object-fit: contain;
}

.iti-day {
    font-size: 1.35rem;
    color: #132a13;
    margin: -1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.iti-desc {
    font-size: 0.85rem;
    color: #606C38;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {

    .trip-itinerary {
        padding: 2rem 0.5rem 6rem 0.5rem;
    }

    .itinerary-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0.5rem;
    }

    .itinerary-card {
        width: 100%;
        min-width: 0;
        padding: 0rem;
    }

    /* Center the last card (Day 5) */
    .itinerary-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - 1rem) / 2);
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 600;
        line-height: 1;
        margin-top: 1rem;
        margin-bottom: 0;
        letter-spacing: 0;
    }

    .iti-highlight {
        font-size: 4.5rem;
    }

    .itinerary-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .itinerary-card:last-child {
        grid-column: span 2;
    }

    .iti-day {
        font-size: 1.35rem;
        margin-top: -3rem;
        font-weight: 600;
    }
}

/* @media (max-width: 500px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-card:last-child {
        grid-column: span 1;
    }
} */

/* ========================
   Trip Price Card
   ======================== */
.trip-price-card {
    padding: 4rem 1.5rem;
}

.trip-booking-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.price-option.member-highlight {
    background: linear-gradient(135deg, rgba(96, 108, 56, 0.2) 0%, rgba(40, 54, 24, 0.4) 100%);
    border-color: #606C38;
}

.price-details {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.price-label {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FEFAE0;
}

/* Buttons inside Card */
.cta-button {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button.outline {
    background: transparent;
    border: 1px solid #FEFAE0;
    color: #FEFAE0;
}

.cta-button.outline:hover {
    background: rgba(254, 250, 224, 0.1);
}

.cta-button.primary {
    background: #FEFAE0;
    color: #132a13;
    border: 1px solid #FEFAE0;
}

.cta-button.primary:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(254, 250, 224, 0.3);
}

.trip-dates-badge {
    display: inline-block;
    background: rgba(254, 250, 224, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #FEFAE0;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.member-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: #d1d5db;
}

.member-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.member-benefits-list li strong {
    color: #fff;
    font-weight: 600;
}

.benefit-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 900px) {

    .cta-card.trip-booking-card {
        flex-direction: column;
        padding: 2rem;
    }

    .cta-right {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }

    .price-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


/* ========================
   CTA & FAQ Section
   ======================== */
.trip-cta {
    padding: 6rem 1.5rem;
}

.cta-faq-row {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Left: Gradient Card */
.cta-card-gradient {
    flex: 1;
    background: linear-gradient(135deg, #606c38 0%, #283618 50%, #132a13 100%);
    /* Green Gradient */
    border-radius: 30px;
    padding: 4rem 3rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(19, 42, 19, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cta-grad-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fefae0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-grad-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    line-height: 1.5;
    color: #f0fdf4;
}

.btn-black {
    background-color: #fefae0;
    color: #132a13 !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-black:hover {
    transform: scale(1.05);
    background-color: #fff;
}

/* Right: Accordion */
.trip-faq {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 3rem;
    color: #1f2937;
}

/* Custom Accordion Arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    padding: 0;
    /* Remove padding from wrapper for smooth close */
}

.faq-item[open] .faq-content {
    grid-template-rows: 1fr;
}

.faq-content>div {
    overflow: hidden;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid #f3f4f6;
}

/* Responsive */
@media (max-width: 900px) {

    .cta-grad-title {
        font-size: 2rem;
        line-height: 1;
        font-weight: 700;
        margin-bottom: 0;
    }

    .cta-grad-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        opacity: 0.95;
        max-width: 400px;
        line-height: 1.5;
        color: #f0fdf4;
    }

    .trip-cta {
        padding: 0 0.5rem;
    }

    .cta-faq-row {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-card-gradient {
        width: 100%;
        padding: 3rem 1.5rem;
    }

    .trip-faq {
        width: 100%;
    }
}

/* ========================
   Who This Trip is For Section
   ======================== */
.who-this-trip {
    padding: 2rem 1.5rem 6rem 1.5rem;
    text-align: center;
}

.who-container {
    max-width: 1500px;
    padding: 0 0.5rem;
    margin: 0 auto;
}

.who-title {
    font-size: 5.5rem;
    color: #132a13;
    margin-top: -2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3rem;
}

.who-title-highlight {
    font-family: var(--font-birthstone);
    font-size: 8rem;
    font-weight: 400;
    color: #606C38;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

.who-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.who-img {
    position: relative;
    width: 100%;
    aspect-ratio: 9/14;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.who-card:hover .who-img img {
    transform: scale(1.05);
}

.who-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-script-title {
    font-family: var(--font-birthstone);
    font-size: 3rem;
    font-weight: 400;
    color: #606C38;
    margin: 0 0 0.8rem 0;
    line-height: 1;
}

.who-subtitle {
    font-size: 0.9rem;
    max-width: 220px;
    color: rgb(100, 100, 100);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 900px) {

    .who-container {
        padding: 0 0;
    }

    .who-this-trip {
        padding: 0rem 0.5rem 0rem 0.5rem;
    }

    .who-title {
        font-size: 2.8rem;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        margin-bottom: 2rem;
    }

    .who-title-highlight {
        font-size: 4.5rem;
    }

    .who-img {
        aspect-ratio: 9/12;
        margin-bottom: 1rem;
    }

    .who-script-title {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}


.host-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem;
}

.host-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.host-title {
    font-size: 5.5rem;
    color: #132a13;
    margin-top: -2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.3rem;
}

.host-title-highlight {
    font-family: var(--font-birthstone);
    font-size: 8rem;
    font-weight: 400;
    color: #606C38;
    letter-spacing: 0;
    margin-right: 0.5rem;
}

.host-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.5;
    color: #6b7280;
}

@media (max-width: 900px) {

    .host-container {
        padding: 6rem 0.5rem;
    }

    .host-title {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 0.85;
        margin-bottom: 0;
    }

    .host-title-highlight {
        font-size: 4.5rem;
    }

    .host-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.95;
        max-width: 600px;
        line-height: 1.5;
        color: #6b7280;
    }
}

/* =========================================
   Social Proof / Marquee Section
   ========================================= */
.trip-social-proof {
    padding: 4rem 0 6rem 0;
    overflow: hidden;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 1rem;
}

.social-title {
    font-size: 5.5rem;
    font-weight: 700;
    color: #132a13;
    line-height: 0.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3rem;
}

.social-highlight {
    font-size: 8rem;
    font-family: var(--font-birthstone);
    font-weight: 400;
    letter-spacing: 0;
    color: #606C38;
}

/* Marquee Container */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marquee-slide 80s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 12px;
    background-color: #ddd;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.marquee-item:hover {
    transform: scale(1.02);
}

.marquee-item:hover img {
    transform: scale(1.1);
}

@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves exactly half way */
    }
}

/* =========================================
   Lightbox Modal
   ========================================= */
.lightbox-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-title {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 0.7;
    }

    .social-highlight {
        font-size: 4.5rem;
    }

    .marquee-item {
        width: 220px;
        height: 220px;
    }
}

/* ========================
   Explore Guanacaste Section
   ======================== */
.explore-guanacaste {
    padding: 8rem 1.5rem 2rem;
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left: Image */
.explore-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(96, 108, 56, 0.25);
}

.explore-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.explore-image-wrapper:hover .explore-img {
    transform: scale(1.03);
}

/* Right: Content */
.explore-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.explore-title {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #132a13;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.explore-highlight {
    color: #166534;
    position: relative;
}

.explore-intro {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0.75rem;
    max-width: 100%;
}

.explore-tagline {
    font-size: 0.95rem;
    color: #606C38;
    font-weight: 600;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Experience Cards */
.experience-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.exp-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #ffffff;
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(96, 108, 56, 0.15);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatChip 3s ease-in-out infinite;
    min-width: 120px;
    text-align: center;
}

.exp-chip:nth-child(1) {
    animation-delay: 0s;
}

.exp-chip:nth-child(2) {
    animation-delay: 0.5s;
}

.exp-chip:nth-child(3) {
    animation-delay: 1s;
}

.exp-chip:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floatChip {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.exp-chip:hover {
    background: #606C38;
    border-color: #606C38;
    box-shadow: 0 12px 24px -6px rgba(96, 108, 56, 0.4);
    transform: translateY(-4px) !important;
    animation-play-state: paused;
}

.exp-chip:hover .chip-text {
    color: #ffffff;
}

.exp-chip:hover .chip-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.exp-chip.active {
    background: #606C38;
    border-color: #606C38;
    box-shadow: 0 8px 16px -4px rgba(96, 108, 56, 0.4);
}

.exp-chip.active .chip-text {
    color: #ffffff;
}

.chip-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(96, 108, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chip-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.chip-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #132a13;
    transition: color 0.3s ease;
    line-height: 1.3;
}

/* Responsive Explore Guanacaste */
@media (max-width: 900px) {
    .explore-guanacaste {
        padding: 4rem 1rem;
    }

    .explore-container {
        padding: 0 1rem;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .explore-image-wrapper {
        order: -1;
        border-radius: 20px;
    }

    .explore-img {
        height: 300px;
    }

    .explore-title {
        font-size: 2.25rem;
    }

    .explore-intro {
        font-size: 1rem;
    }

    .experience-chips {
        gap: 0.75rem;
    }

    .exp-chip {
        padding: 0.6rem 1rem;
    }

    .chip-text {
        font-size: 0.85rem;
    }
}

/* ========================
   Host Profile Modal
   ======================== */
.host-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.host-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.host-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.host-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    border-radius: 30px;
    max-width: 1100px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: #FEFAE0 transparent;
}

/* Custom Scrollbar for Webkit browsers */
.host-modal-container::-webkit-scrollbar {
    width: 8px;
}

.host-modal-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    margin: 50px 0;
}

.host-modal-container::-webkit-scrollbar-thumb {
    background: #FEFAE0;
    border-radius: 10px;
}

.host-modal-container::-webkit-scrollbar-thumb:hover {
    background: #e8e4c8;
}

.host-modal.active .host-modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.host-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid rgba(19, 42, 19, 0.15);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.host-modal-close::before,
.host-modal-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #132a13;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.host-modal-close::before {
    transform: rotate(45deg);
}

.host-modal-close::after {
    transform: rotate(-45deg);
}

.host-modal-close:hover {
    background: #132a13;
    border-color: #132a13;
    transform: rotate(90deg);
}

.host-modal-close:hover::before,
.host-modal-close:hover::after {
    background: #fefae0;
}

.host-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
}

/* Host Image */
.host-modal-image {
    position: relative;
    min-height: 100%;
    display: flex;
}

.host-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}

.host-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #606C38;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Host Info */
.host-modal-info {
    padding: 3rem;
}

.host-tagline {
    display: inline-block;
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.host-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #132a13;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}

.host-role {
    font-size: 1rem;
    color: #606C38;
    font-weight: 500;
    margin: 0 0 1.5rem;
}

.host-bio p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.host-bio p:last-child {
    margin-bottom: 1.5rem;
}

/* Stats Highlights */
.host-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(96, 108, 56, 0.15);
    border-bottom: 1px solid rgba(96, 108, 56, 0.15);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.highlight-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1;
}

.highlight-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.25rem;
}

/* Philosophy Quote */
.host-philosophy {
    background: #f8faf5;
    padding: 1.25rem;
    border-radius: 15px;
    border-left: 4px solid #606C38;
}

.host-philosophy h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #606C38;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.host-philosophy p {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .host-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .host-modal-content {
        grid-template-columns: 1fr;
    }

    .host-modal-image {
        min-height: 250px;
        max-height: 300px;
    }

    .host-modal-image img {
        border-radius: 20px 20px 0 0;
    }

    .host-modal-info {
        padding: 1.5rem;
    }

    .host-name {
        font-size: 1.75rem;
    }

    .host-highlights {
        gap: 1rem;
    }

    .highlight-number {
        font-size: 1.25rem;
    }

    .host-modal-close {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
    }

    .host-modal-close::before,
    .host-modal-close::after {
        width: 16px;
    }
}

/* ========================
   Trip Creator Section
   ======================== */
.trip-creator {
    padding: 2rem 1.5rem;
}

.creator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.creator-grid {
    display: grid;
    grid-template-columns: 330px 350px 380px;
    gap: 3rem;
    align-items: start;
    margin-left: 2rem;
}

/* Left Column - Intro */
.creator-intro {
    padding-top: 1rem;
}

.creator-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #132a13;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.creator-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Center Column - Large Image */
.creator-image-main {
    position: relative;
    width: 350px;
}

.creator-img-large {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.frame-heart {
    position: absolute;
    color: #e85d75;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(232, 93, 117, 0.3));
}

.heart-1 {
    top: -25px;
    left: -10px;
    font-size: 3.8rem;
    animation: float-heart-1 3s ease-in-out infinite;
}
.heart-2 {
    top: 5px;
    right: -15px;
    font-size: 3.5rem;
    animation: float-heart-2 3.5s ease-in-out infinite;
}
.heart-3 {
    bottom: -15px;
    left: 20px;
    font-size: 5rem;
    animation: float-heart-3 4s ease-in-out infinite;
}
.heart-4 {
    bottom: -2px;
    right: -15px;
    font-size: 3.4rem;
    animation: float-heart-4 3.2s ease-in-out infinite;
}

@keyframes float-heart-1 {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-8px) rotate(-15deg) scale(1.1); }
}
@keyframes float-heart-2 {
    0%, 100% { transform: translateY(0) rotate(20deg); }
    50% { transform: translateY(-6px) rotate(20deg) scale(1.1); }
}
@keyframes float-heart-3 {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-10px) rotate(-10deg) scale(1.05); }
}
@keyframes float-heart-4 {
    0%, 100% { transform: translateY(0) rotate(25deg); }
    50% { transform: translateY(-7px) rotate(25deg) scale(1.15); }
}

/* Right Column - Host Info */
.creator-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creator-details {
    background: rgb(254, 250, 224, 0.5);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    border-radius: 20px;
}

.creator-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #132a13;
    margin: 0 0 0.55rem 0;
}

.creator-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Small Image with Link */
.creator-image-small {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 1rem;
    position: relative;
    width: 250px;
}

.creator-img-thumb {
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.creator-link {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #132a13;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creator-link:hover {
    color: #606C38;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .trip-creator {
        padding: 2rem 1rem;
    }

    .creator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: 0;
        text-align: center;
    }

    .creator-intro {
        text-align: center;
        padding-top: 0;
    }

    .creator-title {
        font-size: 2.2rem;
    }

    .creator-image-main {
        width: 100%;
    }

    .creator-img-large {
        width: 100%;
        height: 350px;
    }

    .creator-info {
        align-items: center;
    }

    .creator-details {
        text-align: center;
        width: 100%;
    }

    .creator-tag {
        display: block;
        text-align: center;
    }

    .creator-image-small {
        justify-content: center;
        width: 100%;
    }

    .creator-img-thumb {
        width: 180px;
        height: 220px;
    }

    .creator-link {
        display: block;
        text-align: center;
    }
}