/* ============================================
   Performance Optimizations & Base Styles
   ============================================ */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF974F;
    --green: #2C4B3B;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --bg-dark: #000000;
    --bg-light: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
    --container-padding: 1rem;
    --max-width: 1200px;
    --accent-green: #1F5E4D;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    box-shadow: 0px 10px 8px 0px #e1e1e1;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header .container {
    max-width: unset;
}

.header-content {
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    min-height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    color: var(--text-dark);
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-size: 0.8rem;
    font-weight: 800;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 50px;
    height: 24px;
    z-index: 1002;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
    position: fixed;
    top: 50%;
    right: -500px;
    transform: translateY(-50%);
    width: 400px;
    max-width: 90vw;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 3rem 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.nav.active {
    right: 2rem;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-list li a svg {
    height: 35px !important;
    width: 35px !important;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    background: #F5F5F5;
    color: #1A1A1A;
    transform: translateX(5px);
}

.nav-link.active {
    background: #F5F5F5;
    color: #1A1A1A;
}

.nav-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke-width: 2;
    color: #1A1A1A;
}

.nav-link span {
    flex: 1;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    background: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 30%, rgba(0, 32, 59, 0.45) 70%, rgba(0, 20, 36, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 8rem 0 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 4rem;
    letter-spacing: 0.01em;
    color: #5E5E5E;
    margin-bottom: 0.8rem;
    /* text-transform: uppercase; */
}

h1, h2,h3,h4,h5,h5,h6 {
    font-family: "Poppins", sans-serif; 
}

.hero-title {
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--text-light);
    margin: 0;
    line-height: 1.1;
    text-transform: none;
}

.accent-green {
    color: var(--accent-green);
}

.highlight {
    color: var(--primary-color);
}

.hero-cta {
    position: fixed;
    bottom: 2rem;
    right: var(--container-padding);
    z-index: 3;
}

.btn-reach-out {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 100px !important;
    font-weight: bolder !important;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: auto;
    transition: var(--transition);
}

.btn-reach-out:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero-video-control {
    position: absolute;
    top: 9rem;
    left: var(--container-padding);
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-video-control:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.hero-video-control:active {
    transform: scale(0.95);
}

.hero-video-control .video-control-icon {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-video-control:hover .video-control-icon {
    color: var(--primary-color);
}

.hero-video-control.muted .video-control-icon-muted {
    display: block;
}

.hero-video-control.muted .video-control-icon-unmuted {
    display: none;
}

.hero-video-control:not(.muted) .video-control-icon-muted {
    display: none;
}

.hero-video-control:not(.muted) .video-control-icon-unmuted {
    display: block;
}

@media (max-width: 768px) {
    .hero-video-control {
        width: 48px;
        height: 48px;
        top: 8rem;
        right: 1rem;
    }
    
    .hero-video-control .video-control-icon {
        width: 20px;
        height: 20px;
    }
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: none;
}

.stat-card {
    background: rgba(14, 35, 58, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    color: var(--text-light);
    min-width: 200px;
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   Proposition Section
   ============================================ */

.proposition {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.proposition-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.proposition-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proposition-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.proposition-title {
    /* font-size: clamp(2rem, 5vw, 3.5rem); */
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
}

.proposition-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.card-text {
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.5rem;
    opacity: 1;
    font-family: "Inter", sans-serif;
}

.card-ethos {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-read-more {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    display: block;
    margin: auto;
}

.btn-read-more:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.section-title-white {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Destinations Section (Drive Ideas)
   ============================================ */

.destinations {
    padding: 4rem 0;
    background: var(--bg-light);
    scroll-margin-top: 80px; /* Offset for fixed header when scrolling to anchor */
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
}

.destinations-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1rem var(--container-padding);
}

.destinations-slider {
    /* Tiny-slider will handle the layout */
    /* Keep flex for fallback if JS doesn't load */
    display: flex;
    gap: 1.5rem;
}

/* Tiny-slider overrides - when slider is initialized */
.destinations-slider.tns-slider {
    display: block;
}

.destinations-slider.tns-slider .destination-card-link {
    flex: none;
    min-width: auto;
}

.destination-card-link {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
    display: flex;
    flex-direction: column;
}
.destination-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 30%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.destination-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.destination-icon {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    display: block;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.destination-text {
    flex: 1;
}
.home-destination-theme {
    text-align: left;
}
.destination-theme {
    font-size: clamp(1rem, 2vw, 1rem);
    font-weight: bold;
    color: #fff;
    /* margin-bottom: 0.5rem; */
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.destination-country {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    /* margin-bottom: 0.75rem; */
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.05em;
}

.destination-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.destinations-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dest-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-light);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.dest-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}


/* Mobile responsive for destinations */
@media (max-width: 767px) {
    .hero-content {
        padding: 8rem 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-reach-out {
        padding: 0.875rem 1.75rem;
        font-size: 0.8rem;
    }

    .plan-journey {
        padding: 2rem 0;
        min-height: 600px;
    }

    .plan-journey-panel {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        gap: 2rem;
    }

    .plan-journey-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-top: 2rem;
    }

    .journey-cta-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        letter-spacing: 0.08em;
    }

    .plan-journey-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .plan-contact-card {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }

    .plan-contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .plan-contact-icon svg {
        width: 28px;
        height: 28px;
    }

    .destination-card-link {
        flex: 0 0 calc(100% - 0.75rem);
        min-width: 100%;
    }
    
    .destination-card {
        height: 450px;
    }
    
    .destinations-slider {
        /* gap: 1rem; */
    }
    
    .destination-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    .home-destination-theme {
        text-align: left !important;
        font-size: clamp(1.3rem, 2vw, 1rem) !important;
    }
    .destination-theme {
        font-size: clamp(2.8rem, 4vw, 4rem);
    }
    
    .destination-country {
        font-size: 2rem;
    }
    
    .destination-description {
        font-size: 0.85rem;
    }
}

/* ============================================
   Memories Section
   ============================================ */

.memories {
    padding: 4rem 0;
    background: var(--bg-light);
    scroll-margin-top: 80px; /* Offset for fixed header when scrolling to anchor */
}

.memories-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
}

.memories-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1rem var(--container-padding);
}

.memories-slider {
    /* Tiny-slider will handle the layout */
    /* Keep flex for fallback if JS doesn't load */
    display: flex;
    gap: 1.5rem;
}

/* Tiny-slider overrides - when slider is initialized */
.memories-slider.tns-slider {
    display: block;
}

.memories-slider.tns-slider .memory-card-link {
    flex: none;
    min-width: auto;
}

.memory-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.memory-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
    display: flex;
    flex-direction: column;
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.memory-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.memory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.memory-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.85);
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: left;
    z-index: 2;
}

.memories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mem-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-light);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.mem-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* Mobile responsive for memories */
@media (max-width: 767px) {
    .memory-card {
        flex: 0 0 calc(100% - 0.75rem);
        min-width: 280px;
        height: 350px;
    }

    
    .memory-label {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Plan Journey Section
   ============================================ */

.plan-journey {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

.plan-journey-background {
    filter: brightness(0.85) contrast(1.1);
}

.plan-journey-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.plan-journey-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.plan-journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-journey-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 0 2rem;
}

.plan-journey-panel {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 32px;
    padding: clamp(3rem, 6vw, 5rem);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-journey-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 151, 79, 0.3), transparent);
}

.plan-journey-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 1.1;
    color: var(--text-dark);
    margin-top: 2.5rem;
    letter-spacing: -0.02em;
}

.plan-journey-title .highlight {
    background: linear-gradient(135deg, #FF974F 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.plan-journey-cta {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.journey-cta-btn {
    background: linear-gradient(135deg, #FF974F 0%, #FF8C42 100%);
    color: #fff;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* box-shadow: 
        0 15px 40px rgba(255, 151, 79, 0.4),
        0 5px 15px rgba(255, 151, 79, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3); */
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.journey-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.journey-cta-btn:hover::before {
    left: 100%;
}

.journey-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    /* box-shadow: 
        0 20px 50px rgba(255, 151, 79, 0.5),
        0 10px 25px rgba(255, 151, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); */
}

.journey-cta-btn:active {
    transform: translateY(-2px) scale(1);
}

.plan-journey-contact-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.plan-contact-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.98) 0%, rgba(20, 20, 30, 0.98) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 151, 79, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plan-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-contact-card:hover::before {
    opacity: 1;
}

.plan-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 151, 79, 0.5);
    box-shadow: 
        0 20px 50px rgba(255, 151, 79, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 151, 79, 0.1);
    background: linear-gradient(135deg, rgba(30, 30, 42, 0.98) 0%, rgba(24, 24, 34, 0.98) 100%);
}

.plan-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF974F 0%, #FF8C42 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(255, 151, 79, 0.4),
        0 5px 15px rgba(255, 151, 79, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.plan-contact-card:hover .plan-contact-icon {
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(255, 151, 79, 0.5),
        0 8px 20px rgba(255, 151, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.plan-contact-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.plan-contact-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.plan-contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.plan-contact-card p a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.plan-contact-card p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.plan-contact-card p a:hover {
    color: var(--primary-color);
}

.plan-contact-card p a:hover::after {
    width: 100%;
}

.journey-form {
    width: 100%;
}

.journey-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    align-items: center;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.journey-submit {
    min-width: auto;
    width: 100%;
    border-radius: 999px;
    height: 56px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #FF7A36 0%, #FF5532 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    background: var(--bg-dark);
    padding: 4rem 0;
    scroll-margin-top: 80px; /* Offset for fixed header when scrolling to anchor */
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonials-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.testimonials-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.testimonials-nav {
    display: flex;
    gap: 1rem;
}

.testimonials-nav-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.nav-arrow-left {
    background: transparent;
}

.nav-arrow-right {
    background: var(--text-light);
    border-color: var(--text-light);
    color: var(--text-dark);
}

.nav-arrow-right:hover {
    background: rgba(255, 255, 255, 0.9);
}

.testimonials-image-box {
    width: 100%;
    min-height: 400px;
    background: #2A2A2A;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.testimonials-slider {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    transition: transform 0.6s ease;
    will-change: transform;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 calc(100% - 0.5rem);
    max-width: calc(100% - 0.5rem);
    min-width: calc(100% - 0.5rem);
    box-sizing: border-box;
}

.testimonial-card {
    background: #151515;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #d4d4d4);
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.testimonial-text {
    color: var(--text-light);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    max-width: 90%;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    gap: 1rem;
}

.testimonial-name {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-rating {
    display: flex;
    gap: 0.15rem;
}

.star {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 5rem 0;
    background: var(--bg-light);
    background-image: url('../assets/images/homepage/who_we_are_hp.png');
    background-position: bottom;
    background-size: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.about-text {
    max-width: 800px;
    text-align: left;
    width: 100%;
}

.about-heading {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.about-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.2rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.how-it-works-highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.about-cta {
    margin-top: 1.5rem;
    border-radius: 999px;
    padding: 0.9rem 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.team-card {
    background: #f4f4f4;
    border-radius: 28px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.team-media {
    background: linear-gradient(180deg, #d9d9d9 0%, #c4c4c4 100%);
    border-radius: 22px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder-icon svg {
    opacity: 0.7;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    text-transform: capitalize;
}

.team-description {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.footer-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.social-link svg {
    stroke: currentColor;
    fill: none;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact li {
    max-width: 300px;
}

.footer-contact a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-link {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-separator {
    opacity: 0.5;
}

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
    

    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }

    .hero-cta {
        bottom: 1.5rem;
        right: var(--container-padding);
    }

    .hero-content {
        padding: 8rem 0 1.5rem;
    }

    .section-title-white {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .proposition-title {
        /* font-size: 3.5rem; */
    }

    .proposition-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .proposition-card {
        max-width: 1200px;
        width: 100%;
    }

    .destination-card-link {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 280px;
    }

    .about-content {
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .memory-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 280px;
        height: 380px;
    }

    .plan-journey-panel {
        border-radius: 32px;
        padding: 1.5rem 4rem;
        margin-top: -2rem;
        gap: 2.5rem;
    }

    .plan-journey-contact-info {
        gap: 2rem;
    }

    .plan-contact-card {
        min-width: 240px;
        padding: 2.25rem 2rem;
    }

    .plan-contact-card {
        min-width: 200px;
        padding: 1.5rem;
    }

    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Laptop Styles (1024px and up)
   ============================================ */

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(4rem, 6vw, 5rem);
    }

    .destination-card-link {
        flex: 0 0 calc(25% - 1.125rem);
        min-width: 320px;
    }

    .proposition-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .proposition-title {
        /* font-size: 4.5rem; */
        text-align: center;
        line-height: 1.2;
    }

    .proposition-card {
        max-width: 1200px;
        width: 100%;
    }

    .plan-journey-panel {
        border-radius: 40px;
        padding: 1.5rem 5.5rem;
        margin-top: -3rem;
        gap: 3.5rem;
    }

    .plan-journey-title {
        margin-top: 3rem;
    }

    .plan-journey-cta {
        margin-bottom: 3rem;
    }

    .plan-journey-contact-info {
        gap: 3rem;
    }

    .plan-contact-card {
        padding: 3rem 2.5rem;
    }

    /* .best-locations-content {
        max-width: 50%;
    } */

    .about-content {
        align-items: center;
    }

    .about-text {
        max-width: 1200px;
    }

    .memory-card {
        flex: 0 0 calc(25% - 1.125rem);
        min-width: 280px;
        height: 400px;
    }

    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(33.333% - 0.8rem);
        max-width: calc(33.333% - 0.8rem);
        min-width: calc(33.333% - 0.8rem);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   Desktop Styles (1200px and up)
   ============================================ */

@media (min-width: 1200px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 3rem);
    }

    .section-title-white,
    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

/* ============================================
   Performance Optimizations
   ============================================ */

/* Lazy loading images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Destination Detail Page
   ============================================ */

.destination-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.destination-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destination-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.destination-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 10rem;
    transform: translateY(50%);
}

.destination-theme {
    font-size: clamp(4rem, 5vw, 5rem);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: "Poppins", sans-serif;
    margin: 0 0 0.25rem 0;
    opacity: 1;
    line-height: 1.2;
    text-align: center;
    display: block;
    width: 100%;
    white-space: nowrap;
}
.destination-theme--compact {
    font-size: clamp(3.2rem, 4.2vw, 4.2rem);
    letter-spacing: 0.22em;
}
.home-destination-theme {
    text-align: left !important;
    font-size: clamp(1.3rem, 2vw, 1rem) !important;
}

.destination-name {
    font-size: clamp(4rem, 18vw, 10rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1;
    opacity: 1;
    text-align: center;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.destination-content {
    padding: 5rem 0;
}

.destination-text-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destination-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 2rem;
    font-family: "Inter", sans-serif;
    text-align: left;
}

.destination-text-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--text-dark);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

/* Trip Information Cards Section */
.trip-info-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.trip-info-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.trip-info-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.trip-info-section .container {
    position: relative;
    z-index: 2;
}

.trip-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.trip-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trip-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.trip-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
}

.trip-info-description {
    font-size: 1.2rem;
    color: #1A1A1A;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    margin: 0;
    font-weight: 500;
}

.trip-info-customize:nth-child(1) {
    margin-bottom: 2rem;
}

.trip-info-customize {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trip-info-customize p {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Itinerary Section */
.itinerary-section {
    padding: 5rem 0;
    overflow: hidden;
    background: #F5F5F5;
}

.itinerary-section .container {
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.itinerary-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.itinerary-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateX(0);
    justify-content: flex-start;
    padding-left: 0;
}

.itinerary-day-card {
    flex: 0 0 33.3%;
    min-width: 33.3%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.itinerary-day-header {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
}

.itinerary-day-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.itinerary-day-image {
    width: 100%;
    height: 300px;
    background: #E0E0E0;
    overflow: hidden;
    flex-shrink: 0;
}

.itinerary-day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.itinerary-day-content {
    padding: 1rem 2rem 0 2rem;
    flex: 1;
    background: #fff;
}

.itinerary-detail {
    margin-bottom: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.itinerary-detail:last-child {
    margin-bottom: 0;
}

.itinerary-label {
    font-size: 1.1rem;
    font-weight: bolder;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.itinerary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.itinerary-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.itinerary-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.itinerary-nav-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

/* Inclusions & Additional Services Section */
.inclusions-services-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.inclusions-services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inclusions-services-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.inclusions-services-section .container {
    position: relative;
    z-index: 2;
}

.inclusions-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-box-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 0.95 rem;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-box-intro {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
    line-height: 2;
}

.info-box-text {
    font-size: 1.2rem;
    color: #1A1A1A;
    line-height: 1.8;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.info-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box-list li {
    font-size: 1.2rem;
    color: #1A1A1A;
    line-height: 1.8;
    font-family: "Inter", sans-serif;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.info-box-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-box-list li:last-child {
    margin-bottom: 0;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.btn-book-trip {
    background: var(--primary-color);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    border: none;
    cursor: pointer;
}

.btn-book-trip:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-memories {
    background: var(--green);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    border: none;
    cursor: pointer;
}

.btn-memories:hover {
    background: #164a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 94, 77, 0.4);
}

/* Responsive for Destination Page */
@media (max-width: 980px) {
    .trip-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .trip-info-customize {
        padding: 1.25rem 1.5rem;
    }
    
    .trip-info-customize p {
        font-size: 2rem;
    }

}

@media (max-width: 767px) {

    
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(100% - 0.5rem);
        max-width: calc(100% - 0.5rem);
        min-width: calc(100% - 0.5rem);
    }
    .destination-hero {
        min-height: 70vh;
    }
    
    .destination-hero-content {
        padding-bottom: 4rem;
        transform: translateY(10%);
    }
    
    .destination-theme {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        /* margin-bottom: 0.5rem; */
        letter-spacing: 0.08em;
        opacity: 1;
        text-align: center;
        display: block;
        width: 100%;
        white-space: nowrap;
    }
    .destination-theme--compact {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: 0.06em;
    }
    .home-destination-theme {
        text-align: left;
    }
    
    .destination-name {
        font-size: clamp(2.5rem, 12vw, 5.5rem);
        line-height: 0.95;
        text-align: center;
        display: block;
        width: 100%;
        white-space: nowrap;
    }
    
    .destination-content {
        padding: 3rem 0;
    }
    
    .destination-text-content {
        padding: 0 1.5rem;
    }
    
    .destination-text-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trip-info-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    
    .trip-info-card {
        padding: 2rem 1.5rem;
    }
    
    .trip-info-customize {
        padding: 1.25rem 1.5rem;
    }
    
    .trip-info-customize p {
        font-size: 1rem;
    }
    
    .itinerary-day-card {
        flex: 0 0 calc(100% - 0.75rem);
        min-width: 100%;
    }
    
    .inclusions-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-book-trip,
    .btn-memories {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-destination-theme {
        text-align: left !important;
        font-size: clamp(1.3rem, 2vw, 1rem) !important;
    }

    .destination-theme {
        font-size: clamp(2rem, 4vw, 4rem);
        opacity: 1;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .destination-name {
        font-size: clamp(5rem, 10vw, 8rem);
        text-align: center;
        display: block;
        width: 100%;
    }
}


@media (max-width: 480px) {
    .trip-info-grid {
        grid-template-columns: repeat(1, 1fr);
    }
.home-destination-theme {
    font-size: clamp(1rem, 1vw, 1rem);
        text-align: left;
    }
    .destination-theme {
        font-size: clamp(1rem, 1vw, 1rem);
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .destination-name {
        text-align: center;
        display: block;
        width: 100%;
    }

    .journey-cta-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .plan-journey-panel {
        padding: 2rem;
    }

    .hero-video-control {
        top: 4rem;
    }

    .hero {
        min-height: 40vh;
    }

    .hero-eyebrow {
        font-size: 2.8rem;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .menu-toggle {
        width: 40px;
        
        .menu-toggle span {
            height: 2px;
        }
    }
}

@media (min-width: 768px) {
  
    
    .itinerary-day-card {
        flex: 0 0 33.3%;
        min-width: 33.3%;
    }
}

@media (min-width: 1024px) {
    .trip-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .itinerary-day-card {
        flex: 0 0 35%;
        min-width: 35%;
    }
}

/* ============================================
   Who We Are Page
   ============================================ */

.who-we-are-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.who-we-are-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.who-we-are-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.who-we-are-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 4rem;
}

.who-we-are-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1.1;
}

.team-member-section {
    padding: 5rem 0;
    width: 100%;
}

.team-dark {
    background: #2A2A2A;
    color: #fff;
}

.team-light {
    background: #F5F5F5;
    color: #1A1A1A;
}

.team-member-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.team-member-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


.placeholder-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: #999;
    font-weight: 300;
    line-height: 1;
}

.team-member-image {
    width: 300px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-text {
    flex: 1;
}

.team-member-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-member-description {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: "Inter", sans-serif;
}

.team-dark .team-member-description {
    color: #fff;
}

.team-light .team-member-description {
    color: #1A1A1A;
}

.team-member-description p {
    margin-bottom: 1.5rem;
}

.team-member-description p:last-child {
    margin-bottom: 0;
}

/* Responsive for Who We Are Page */
@media (max-width: 1024px) {
    .team-member-content {
        grid-template-columns: 250px 1fr;
        gap: 3rem;
    }
    
    .team-member-image,
    .team-member-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
}
.itinerary-nav-arrow {
    position: absolute;
    top: 35%;
}

.itinerary-nav-arrow-left {
    left: 1%;
}
.itinerary-nav-arrow-right {
    right: 1%;
}

@media (max-width: 767px) {
    .who-we-are-hero {
        min-height: 70vh;
    }
    
    .who-we-are-hero-content {
        padding-bottom: 2rem;
    }
    
    .terms-hero {
        min-height: 70vh;
    }
    
    .terms-hero-content {
        padding-bottom: 2rem;
    }
    
    .terms-content-section {
        padding: 3rem 0;
    }
    
    .terms-content {
        padding: 0 1.5rem;
    }
    
    .terms-section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .terms-section p {
        font-size: 0.95rem;
    }
    
    .privacy-hero {
        min-height: 70vh;
    }
    
    .privacy-hero-content {
        padding-bottom: 2rem;
    }
    
    .privacy-content-section {
        padding: 3rem 0;
    }
    
    .privacy-content {
        padding: 0 1.5rem;
    }
    
    .privacy-section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .privacy-section p {
        font-size: 0.95rem;
    }
    
    .privacy-list li {
        font-size: 0.95rem;
    }
    
    .team-member-section {
        padding: 3rem 0;
    }
    
    .team-member-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-member-image,
    .team-member-image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .team-member-text {
        text-align: left;
    }
    
    .team-member-description {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-stats,
    .testimonials-nav {
        display: none;
    }
}

/* ============================================
   How It Works Page
   ============================================ */

.how-it-works-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

.how-it-works-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.how-it-works-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-works-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.how-it-works-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.how-it-works-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.how-it-works-step {
    padding: 5rem 0;
    width: 100%;
}

.step-dark {
    background: #2A2A2A;
    color: #fff;
}

.step-light {
    background: #F5F5F5;
    color: #1A1A1A;
}

.step-content {
    max-width: 900px;
    margin: 0 auto;
    /* text-align: center; */
}

.step-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.step-text {
    margin-bottom: 2rem;
}

.step-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
}

.step-dark .step-text p {
    color: #fff;
}

.step-light .step-text p {
    color: #1A1A1A;
}

.step-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    margin: 2rem 0 0;
    line-height: 1.5;
}

.step-highlight-dark {
    /* font-size: 1.1rem; */
    /* font-weight: 600; */
    /* color: #1A1A1A; */
    /* font-family: "Poppins", sans-serif; */
    /* margin: 1.5rem 0; */
    /* line-height: 1.5; */
}

/* Responsive for How It Works */
@media (max-width: 767px) {
    .how-it-works-hero {
        min-height: 400px;
    }
    
    .how-it-works-step {
        padding: 3rem 0;
    }
    
    .step-content {
        padding: 0 1rem;
    }
    
    .step-text p {
        font-size: 1rem;
    }
    
    .step-highlight {
        font-size: 1.1rem;
    }
    
    .nav {
        width: 350px;
        padding: 2.5rem 2rem;
        right: -400px;
    }
    
    .nav.active {
        right: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Memories Page Styles
   ============================================ */

.memories-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.memories-hero-background,
.how-it-works-hero, .who-we-are-hero, .destination-hero, .terms-hero, .privacy-hero  {
    background-image: url('/DOG/assets/images/other_banner/background-banner.jpeg');
    background-repeat: no-repeat;
    background-size: contain;
}

.remove-margin-bottom {
    margin-bottom: 0;
}

/* ============================================
   Terms & Conditions Page
   ============================================ */

.terms-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.terms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.terms-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.terms-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 4rem;
}

.terms-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.terms-content-section {
    padding: 5rem 0;
    background: #fff;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 151, 79, 0.2);
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-contact-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-contact-link:hover {
    color: var(--green);
}

/* ============================================
   Privacy Policy Page
   ============================================ */

.privacy-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.privacy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.privacy-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.privacy-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 4rem;
}

.privacy-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.privacy-content-section {
    padding: 5rem 0;
    background: #fff;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 151, 79, 0.2);
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    margin: 1rem 0 1.5rem 2rem;
    padding: 0;
    list-style: none;
}

.privacy-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: "Inter", sans-serif;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-contact-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-contact-link:hover {
    color: var(--green);
}

.memories-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.memories-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memories-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.memories-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-bottom: 10rem;
    transform: translateY(50%);
}

.memories-theme {
    font-size: clamp(4rem, 5vw, 5rem);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: "Poppins", sans-serif;
    margin: 0 0 0.25rem 0;
    opacity: 1;
    line-height: 1.2;
    text-align: center;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.memories-name {
    font-size: clamp(4rem, 18vw, 10rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1;
    opacity: 1;
    text-align: center;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.memories-gallery {
    padding: 4rem 0;
    background: #f8f8f8;
}

.memories-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: minmax(250px, auto); /* Allow rows to grow based on content */
    grid-auto-flow: dense; /* Fill gaps automatically - packs items tightly */
    align-items: stretch; /* Ensure items fill their grid cells */
    /* Better gap filling */
    align-content: start; /* Align content to start to prevent gaps */
    /* Performance optimization */
    content-visibility: auto; /* Skip rendering off-screen items */
    contain-intrinsic-size: 250px; /* Estimated size for better performance */
}

.memories-item {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%; /* Fill the grid cell completely */
    min-height: 100%; /* Ensure minimum height to fill space */
    display: flex; /* Ensure proper filling */
    align-items: stretch;
    /* Performance optimization */
    content-visibility: auto;
    contain: layout style paint;
}

.memories-item-lazy {
    /* Lazy items start hidden until loaded */
    min-height: 250px;
}

.memories-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.memories-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.memories-item img,
.memories-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.memories-item-regular {
    grid-row: span 1;
}

.memories-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.memories-item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.memories-item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.memories-video {
    grid-column: span 1;
    grid-row: span 1;
    /* Make video smaller to fit better in grid */
}

/* Memories Hero Video Section - Separate full-width section */
.memories-hero-video-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: #fff;
}

.memories-hero-video-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

.memories-hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* background: #000; */
}

/* Ensure video plays smoothly */
.memories-hero-video-section video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* Video Controls */
.memories-video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.memories-hero-video-wrapper:hover .memories-video-controls,
.memories-video-controls:hover,
.memories-video-controls:focus-within {
    opacity: 1;
    transform: translateY(0);
}

/* Show controls when video is paused or user interacts */
.memories-hero-video-wrapper:active .memories-video-controls,
.memories-hero-video-section:focus-within .memories-video-controls,
.memories-hero-video-section.video-paused .memories-video-controls {
    opacity: 1;
}

/* Keep controls visible when paused */
.memories-hero-video-section.video-paused .memories-video-controls {
    opacity: 1 !important;
}

.video-control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.video-play-pause-btn .play-icon,
.video-play-pause-btn .pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-mute-btn .mute-icon,
.video-mute-btn .unmute-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.memories-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
}

.memories-video-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memories-video:hover .memories-video-play-icon {
    transform: scale(1.05);
}

/* Memories Modal */
.memories-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.memories-modal.is-open {
    display: flex;
}

.memories-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.memories-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memories-modal-content {
    width: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memories-modal-content img,
.memories-modal-content video {
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.memories-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.memories-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: scale(1.05);
}

/* Responsive adjustments for memories gallery */
@media (max-width: 768px) {
    .memories-hero {
        min-height: 70vh;
    }
    
    .memories-hero-content {
        padding-bottom: 4rem;
        transform: translateY(10%);
    }
    
    .memories-theme {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        letter-spacing: 0.08em;
        opacity: 1;
        text-align: center;
        display: block;
        width: 100%;
        white-space: nowrap;
    }
    
    .memories-name {
        font-size: clamp(2.5rem, 12vw, 5.5rem);
        line-height: 0.95;
        text-align: center;
        display: block;
        width: 100%;
        white-space: nowrap;
        letter-spacing: 0.05em;
    }
    
    .memories-gallery {
        padding: 2rem 0;
    }
    
    .memories-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        grid-auto-rows: 150px;
        grid-auto-flow: dense; /* Fill gaps on mobile too */
    }
    
    .memories-item-large,
    .memories-item-wide {
        grid-column: span 2;
    }
    
    .memories-item-tall {
        grid-row: span 2;
    }
    
    .memories-video {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .memories-hero-video-wrapper {
        padding-bottom: 75%; /* Taller aspect ratio on tablet */
    }

    .card-text, .card-ethos {
        font-size: 1rem;
    }

    .journey-cta-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .plan-journey-panel {
        padding: 2rem;
    }

    .hero {
        min-height: 90vh;
    }
}

@media (max-width: 480px) {
    .memories-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .memories-item-large,
    .memories-item-wide,
    .memories-item-tall,
    .memories-video {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .memories-gallery-grid {
        grid-auto-flow: dense; /* Ensure dense packing on mobile too */
    }
    
    .memories-hero-video-wrapper {
        padding-bottom: 100%; /* Square aspect ratio on mobile for better viewing */
    }
    
    .memories-video-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .video-control-btn {
        width: 48px;
        height: 48px;
    }
    
    .video-control-btn svg {
        width: 20px;
        height: 20px;
    }
}


/* Drive-idea cards: a long theme (e.g. Tibet's "Where Earth Meets the Sky")
   would otherwise run past the card and get clipped by its overflow:hidden,
   so let the homepage/listing variant wrap instead of forcing one line. */
.home-destination-theme.destination-theme {
    white-space: normal;
}

/* ==========================================================================
   Legal notices — self-drive / third-party activity disclaimers
   ========================================================================== */

.destination-terms-note {
    margin-top: 1.5rem;
    max-width: 70ch;
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.75;
}

.destination-terms-note a {
    color: inherit;
    text-decoration: underline;
}

.how-it-works-disclaimer .step-text p:last-child {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.how-it-works-disclaimer-link {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .destination-terms-note {
        font-size: 0.8125rem;
    }
}
