.travel-page .nav-link.active {
    color: var(--black);
    font-weight: 500;
    text-decoration-color: var(--primary);
}

.travel-hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.travel-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-carousel-slide.active {
    opacity: 1;
}

.travel-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.travel-carousel-slide.active img {
    transform: scale(1);
}

.travel-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.travel-carousel-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 24px;
    color: #ffffff;
    text-align: center;
    transform: translateY(calc(-50% + var(--travel-hero-copy-offset, 0px)));
    will-change: transform;
}

.travel-carousel-label {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s 0.3s;
}

.travel-carousel-title {
    margin-bottom: 16px;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s 0.5s;
}

.travel-carousel-subtitle {
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s 0.7s;
}

.travel-carousel-slide.active .travel-carousel-label,
.travel-carousel-slide.active .travel-carousel-title,
.travel-carousel-slide.active .travel-carousel-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.travel-carousel-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.travel-carousel-dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s;
}

.travel-carousel-dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary);
}

.travel-carousel-arrows {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    pointer-events: none;
    transform: translateY(-50%);
}

.travel-carousel-arrow {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    pointer-events: all;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.travel-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.travel-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    z-index: 3;
    animation: travelBounce 2s infinite;
    transform: translateX(-50%);
}

.travel-scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.travel-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.travel-section-tight {
    padding-top: 60px;
}

.travel-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
}

.travel-stat-item {
    padding: 24px;
    text-align: center;
}

.travel-stat-value {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0;
}

.travel-stat-label {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.travel-trips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.travel-trip-card {
    position: relative;
    display: flex;
    min-height: 480px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-trip-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.travel-trip-card.featured {
    grid-column: span 2;
    min-height: 560px;
}

.travel-trip-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-trip-card:hover .travel-trip-card-img {
    transform: scale(1.08);
}

.travel-trip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
    transition: opacity 0.5s;
}

.travel-trip-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
}

.travel-trip-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.travel-trip-badge.latest {
    background: var(--primary);
    color: #ffffff;
}

.travel-trip-badge.past {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.travel-trip-card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 32px;
    color: #ffffff;
}

.travel-trip-date {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.travel-trip-title {
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
}

.travel-trip-desc {
    max-width: 480px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.85;
}

.travel-trip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s;
}

.travel-trip-card:hover .travel-trip-link {
    gap: 10px;
}

.travel-vlog-section {
    padding: 100px 24px;
    background: var(--cream);
}

.travel-vlog-inner,
.travel-future-section {
    max-width: 1200px;
    margin: 0 auto;
}

.travel-vlog-grid,
.travel-future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.travel-vlog-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-vlog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.travel-vlog-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.travel-vlog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.travel-vlog-card:hover .travel-vlog-thumb img {
    transform: scale(1.05);
}

.travel-vlog-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(254, 119, 67, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    transform: translate(-50%, -50%);
}

.travel-vlog-card:hover .travel-vlog-play {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.travel-vlog-duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.travel-vlog-info {
    padding: 24px;
}

.travel-vlog-location {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.travel-vlog-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.travel-vlog-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

.travel-future-section {
    padding: 100px 24px;
}

.travel-future-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-future-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.travel-future-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.travel-future-card:hover img {
    transform: scale(1.08);
}

.travel-future-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.travel-future-card-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 32px;
    color: #ffffff;
}

.travel-future-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.travel-future-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.travel-trip-page {
    background: var(--white);
}

.travel-trip-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.travel-trip-video-zone {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
}

.travel-trip-hero-poster,
.travel-trip-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-trip-hero-video {
    z-index: 1;
}

.travel-trip-hero-poster {
    z-index: 0;
}

.travel-trip-play-chip {
    position: absolute;
    right: clamp(20px, 4vw, 56px);
    bottom: clamp(22px, 5vw, 60px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(15, 19, 25, 0.42);
    backdrop-filter: blur(18px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.travel-trip-video-zone:hover .travel-trip-play-chip {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(254, 119, 67, 0.86);
    transform: translateY(-3px);
}

.travel-trip-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.82) 100%);
}

.travel-trip-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 680px;
    max-width: 1040px;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 160px 24px 86px;
    color: #ffffff;
    pointer-events: none;
}

.travel-trip-back,
.travel-trip-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.travel-trip-back {
    pointer-events: auto;
}

.travel-trip-back {
    width: fit-content;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.travel-trip-back:hover {
    color: #ffffff;
}

.travel-trip-eyebrow {
    margin-bottom: 18px;
    color: var(--primary);
}

.travel-trip-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(42px, 8vw, 86px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.96;
}

.travel-trip-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.travel-trip-detail {
    display: grid;
    max-width: 1120px;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    margin: 0 auto;
    padding: 96px 24px 120px;
}

.travel-trip-facts {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--cream);
}

.travel-trip-facts span {
    display: block;
    margin-top: 22px;
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.travel-trip-facts span:first-child {
    margin-top: 0;
}

.travel-trip-facts strong {
    display: block;
    margin-top: 8px;
    color: var(--black);
    font-size: 16px;
    line-height: 1.4;
}

.travel-trip-story h2 {
    max-width: 680px;
    margin: 12px 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
}

.travel-trip-intro {
    max-width: 760px;
    color: var(--gray-700);
    font-size: 19px;
    line-height: 1.75;
}

.travel-trip-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 42px 0;
}

.travel-trip-highlights div,
.travel-trip-note {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--white);
}

.travel-trip-highlights div {
    padding: 20px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.travel-trip-note-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.travel-trip-note {
    padding: 26px;
}

.travel-trip-note p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
}

.travel-trip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.travel-trip-gallery-section {
    padding: 24px 24px 120px;
    background: var(--cream);
}

.travel-trip-gallery-header,
.travel-trip-photo-roll {
    max-width: 1120px;
    margin: 0 auto;
}

.travel-trip-gallery-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.travel-trip-gallery-header h2 {
    margin-top: 12px;
    color: var(--black);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
}

.travel-trip-gallery-header p {
    max-width: 360px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.travel-trip-photo-roll {
    display: grid;
    max-height: min(880px, 82vh);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: color-mix(in srgb, var(--white) 82%, transparent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 28px 70px rgba(0, 0, 0, 0.08);
    overscroll-behavior: contain;
    scroll-snap-type: y proximity;
    scrollbar-width: thin;
}

.travel-trip-photo {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #111111;
    scroll-snap-align: start;
}

.travel-trip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-trip-photo:hover img {
    transform: scale(1.04);
}

.travel-trip-photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    transition: opacity 0.25s;
}

.travel-trip-photo:hover::after {
    opacity: 1;
}

.travel-trip-photo figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 1;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
}

.travel-trip-photo:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.travel-video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(16px);
    animation: travelVideoModalFadeIn 0.24s ease both;
}

.travel-video-modal[hidden] {
    display: none;
}

.travel-video-modal-window {
    position: relative;
    width: min(1080px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: #111111;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    animation: travelVideoModalPanelIn 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.travel-video-modal.is-closing {
    pointer-events: none;
    animation: travelVideoModalFadeOut 0.24s ease both;
}

.travel-video-modal.is-closing .travel-video-modal-window {
    animation: travelVideoModalPanelOut 0.24s ease both;
}

.travel-video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.46);
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
}

.travel-video-modal-player {
    display: block;
    width: 100%;
    max-height: 72vh;
    aspect-ratio: 16 / 9;
    background: #000000;
    object-fit: contain;
}

.travel-video-modal-copy {
    padding: 22px 26px 26px;
    color: #ffffff;
}

.travel-video-modal-copy span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.travel-video-modal-copy h2 {
    margin: 8px 0;
    font-size: clamp(24px, 4vw, 38px);
    letter-spacing: 0;
}

.travel-video-modal-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

@keyframes travelVideoModalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes travelVideoModalFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes travelVideoModalPanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes travelVideoModalPanelOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }
}

@media (prefers-reduced-motion: reduce) {
    .travel-video-modal,
    .travel-video-modal-window,
    .travel-video-modal.is-closing,
    .travel-video-modal.is-closing .travel-video-modal-window {
        animation: none;
    }
}

.travel-future-title {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
}

.travel-future-date {
    font-size: 14px;
    opacity: 0.8;
}

.travel-suggest-section {
    padding: 100px 24px;
    background: var(--slate);
    color: #ffffff;
}

.travel-suggest-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.travel-suggest-inner h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 0;
}

.travel-suggest-inner p {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.8;
}

.travel-suggest-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.travel-suggest-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 980px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    transition: all 0.3s;
}

.travel-suggest-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.travel-suggest-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.travel-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 980px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.travel-submit-btn:hover {
    box-shadow: 0 8px 30px rgba(254, 119, 67, 0.35);
    transform: scale(1.04);
}

.travel-submit-btn:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
    box-shadow: none;
}

.travel-suggest-status {
    margin-top: 14px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.travel-footer {
    padding: 60px 24px 40px;
    background: #000000;
    color: #ffffff;
}

.travel-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.travel-footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.travel-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.travel-footer-links a {
    color: var(--gray-400);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.travel-footer-links a:hover {
    color: #ffffff;
}

html[data-theme="dark"] .travel-trip-card:hover,
html[data-theme="dark"] .travel-vlog-card:hover,
html[data-theme="dark"] .travel-future-card:hover {
    box-shadow: 0 20px 44px var(--card-shadow);
}

@keyframes travelBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@media (max-width: 1024px) {
    .travel-trips-grid {
        grid-template-columns: 1fr;
    }

    .travel-trip-card.featured {
        grid-column: span 1;
    }

    .travel-trip-detail {
        grid-template-columns: 1fr;
    }

    .travel-trip-facts {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .travel-trip-facts span {
        margin-top: 0;
    }

    .travel-trip-photo-roll {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .travel-vlog-grid,
    .travel-future-grid,
    .travel-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .travel-carousel-arrows {
        top: auto;
        bottom: 116px;
        left: 50%;
        width: auto;
        gap: 14px;
        justify-content: center;
        padding: 0;
        transform: translateX(-50%);
    }

    .travel-carousel-arrow {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.32);
        background: rgba(15, 19, 25, 0.34);
        backdrop-filter: blur(16px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
    }

    .travel-vlog-grid,
    .travel-future-grid {
        grid-template-columns: 1fr;
    }

    .travel-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .travel-suggest-form {
        flex-direction: column;
        align-items: stretch;
    }

    .travel-suggest-input {
        min-width: 0;
    }

    .travel-trip-highlights,
    .travel-trip-note-grid {
        grid-template-columns: 1fr;
    }

    .travel-trip-facts {
        grid-template-columns: 1fr;
    }

    .travel-trip-gallery-header {
        align-items: start;
        flex-direction: column;
    }

    .travel-trip-gallery-header p {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .travel-hero-carousel {
        min-height: 560px;
    }

    .travel-carousel-content {
        top: 50%;
    }

    .travel-carousel-arrows {
        bottom: 104px;
    }

    .travel-section,
    .travel-vlog-section,
    .travel-future-section,
    .travel-suggest-section {
        padding-right: 20px;
        padding-left: 20px;
    }

    .travel-trip-card,
    .travel-trip-card.featured {
        min-height: 430px;
    }

    .travel-trip-card-content,
    .travel-future-card-content {
        padding: 24px;
    }

    .travel-trip-hero,
    .travel-trip-hero-content {
        min-height: 600px;
    }

    .travel-trip-hero-content {
        padding-bottom: 64px;
    }

    .travel-trip-detail {
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .travel-trip-gallery-section {
        padding-top: 24px;
        padding-bottom: 80px;
    }

    .travel-trip-photo-roll {
        max-height: 76vh;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px;
        border-radius: 18px;
    }
}
