/* ==========================================================================
CSS Variables & Base Reset
========================================================================== */
:root {
    --primary-bg: #063B35;
    --secondary-bg: #0A4A43;
    --accent: #D8B15C;
    --secondary-accent: #E7C98A;
    --text-primary: #FFFFFF;
    --text-secondary: #D8D8D8;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800; /* ExtraBold */
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600; /* SemiBold */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Reusable Components
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--text-primary);
    color: var(--primary-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary-bg);
}

.btn-secondary {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--accent);
}

.full-width {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(10, 74, 67, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 177, 92, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(6, 59, 53, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(216, 177, 92, 0.1);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
}

.nav-menu li a {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-menu li a:hover::after, .nav-menu li a.active::after {
    width: 100%;
}


.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 50px 2rem;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: -10px; /* Expand slightly to hide blur edges */
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: blur(4px);
    transform: scale(1.05); /* hide blur white edges */
}

.hero-bg.active {
    opacity: 1;
    animation: kenBurns 6s linear forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 59, 53, 0.5); /* overlay for perfect text readability */
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-container.centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-container.centered .hero-content {
    align-items: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: -10px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.stagger-word {
    display: inline-block;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.highlight-script {
    font-family: var(--font-script);
    color: var(--accent);
    font-size: 5rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-socials {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.hero-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.hero-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(216, 177, 92, 0.1);
}

/* Right Side Image & Decorations */
.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic shape fallback */
    overflow: hidden;
    animation: blobMorph 15s ease-in-out infinite alternate;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 4px solid var(--accent);
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Decorative doodles */
.floating-plane {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-primary);
    animation: floatPlane 6s ease-in-out infinite;
}

@keyframes floatPlane {
    0%, 100% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(15px, -15px) rotate(25deg); }
}

.flight-path {
    position: absolute;
    top: -40px;
    right: -20px;
    z-index: -1;
}

.dashed-path {
    stroke-dashoffset: 100;
    animation: dashAnim 4s linear infinite;
}

@keyframes dashAnim {
    to { stroke-dashoffset: 0; }
}

.doodle-star {
    position: absolute;
    bottom: 20px;
    left: -20px;
    color: var(--secondary-accent);
    font-size: 1.5rem;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.doodle-compass {
    position: absolute;
    top: 50%;
    right: -30px;
    color: var(--text-secondary);
    font-size: 2rem;
    opacity: 0.5;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Background floating shapes */
.organic-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(216,177,92,0.08) 0%, rgba(216,177,92,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    animation: floatShape 10s ease-in-out infinite alternate;
}

.shape-2 {
    width: 800px;
    height: 800px;
    bottom: -300px;
    right: -200px;
    animation: floatShape 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% { transform: translate(0,0); }
    100% { transform: translate(50px, 50px); }
}

/*  Stranger Year Trip */
.stranger-year-section { padding: 4rem 2rem 8rem; position: relative; z-index: 5; }
.stranger-card {
    max-width: 900px; margin: 0 auto; text-align: center;
    background: rgba(10, 74, 67, 0.7); padding: 4rem; position: relative;
    border: 1px solid var(--accent); box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.badge-exclusive {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--primary-bg); padding: 0.5rem 1.5rem;
    border-radius: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
}
.cinematic-text {
    font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(216,177,92,0.4);
}
.year-selector { margin: 2rem 0; font-size: 1.5rem; display: flex; justify-content: center; align-items: center; gap: 1rem; }
.year-box {
    position: relative; background: var(--text-primary); color: var(--primary-bg);
    padding: 0.5rem 2rem; border-radius: 10px; font-weight: 800; font-size: 2rem;
}
.trip-meta { display: flex; justify-content: space-around; margin: 3rem 0; text-align: left; }
.meta-item { display: flex; align-items: center; gap: 1rem; }
.meta-item i { font-size: 2rem; color: var(--accent); }
.meta-item span { display: block; font-size: 0.9rem; color: var(--text-secondary); }
.meta-item strong { display: block; font-size: 1.2rem; }

/* Countdown */
.countdown-wrapper { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.countdown { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.time-box .num { display: block; font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent); }
.time-box .lbl { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

/* Floating Features */
.stranger-features {
    position: absolute; inset: 0; pointer-events: none; z-index: 4;
}
.feat-card {
    position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600;
    border: 1px solid rgba(216,177,92,0.3); white-space: nowrap;
    animation: floatBob 6s infinite ease-in-out alternate;
}
.float-a { top: 0%; left: 0%; } 
.float-b { top: 20%; right: 0%; animation-delay: 1s; }
.float-c { bottom: 15%; left: 0%; animation-delay: 2s; } 
.float-d { bottom: 0%; right: 10%; animation-delay: 0.5s; }
.float-e { top: 40%; left: -5%; animation-delay: 1.5s; } 
.float-f { top: 60%; right: 0%; animation-delay: 2.5s; }
@keyframes floatBob { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }

/* 5. Packages Marquee / Slider */
.premium-packages { padding: 6rem 0; overflow: hidden; }
.marquee-container { width: 100%; overflow-x: auto; padding: 2rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.marquee-container::-webkit-scrollbar { display: none; }
.pkg-track { display: flex; gap: 2.5rem; padding-bottom: 2rem; }
.pkg-card {
    flex: 0 0 400px; scroll-snap-align: center; border-radius: 20px; overflow: hidden;
    background: rgba(10, 74, 67, 0.4); border: 1px solid rgba(216,177,92,0.15);
}
.pkg-card:hover { border-color: var(--accent); transform: translateY(-10px) rotateX(2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.pkg-img { height: 250px; position: relative; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pkg-card:hover .pkg-img img { transform: scale(1.1); }
.pkg-rating { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); padding: 5px 10px; border-radius: 15px; font-size: 0.8rem; color: var(--accent); }
.pkg-info { padding: 1.5rem; }
.pkg-info h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.pkg-info .duration, .pkg-info .location { display: block; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.pkg-info p { font-size: 0.95rem; margin: 1rem 0; color: #D8D8D8; }
.pkg-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.pkg-actions .price { font-size: 1.5rem; font-weight: 800; color: var(--accent); }

/* 6. Compare & Timeline */
.compare-section { padding: 6rem 2rem; background: var(--secondary-bg); }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.compare-card { background: rgba(6, 59, 53, 0.8); border-radius: 20px; padding: 3rem 2rem; border: 1px solid rgba(255,255,255,0.1); position: relative; transition: var(--transition-smooth); }
.compare-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.compare-card.popular { border-color: var(--accent); transform: scale(1.05); background: rgba(10, 74, 67, 0.9); z-index: 2; }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--primary-bg); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 800; }
.compare-card h3 { text-align: center; margin-bottom: 2rem; font-size: 1.8rem; color: var(--secondary-accent); }
.compare-card ul li { margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.compare-card ul li.disabled { color: rgba(255,255,255,0.3); }

.timeline-section { padding: 6rem 2rem; }
.timeline-wrapper { display: flex; justify-content: space-between; position: relative; max-width: 1000px; margin: 3rem auto; }
.timeline-line { position: absolute; top: 30px; left: 0; width: 100%; height: 2px; background: rgba(216,177,92,0.2); z-index: 1; }
.timeline-step { text-align: center; z-index: 2; position: relative; width: 120px; }
.step-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--primary-bg); border: 2px solid var(--accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--accent); transition: 0.4s; }
.timeline-step:hover .step-icon { background: var(--accent); color: var(--primary-bg); transform: scale(1.2); box-shadow: 0 0 15px rgba(216, 177, 92, 0.5); }
.timeline-step h5 { font-size: 1rem; color: var(--text-primary); }

.story-card { max-width: 800px; margin: 0 auto; text-align: center; padding: 4rem 2rem; }
.story-user { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.story-user img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--accent); }

/* Responsive Overrides */
@media (max-width: 992px) {
    .stranger-features, .cursor-spotlight { display: none; }
    .trip-meta { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
    .px-hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
    .compare-card.popular { transform: none; }
    .timeline-wrapper { flex-direction: column; gap: 3rem; }
    .timeline-line { top: 0; left: 50px; width: 2px; height: 100%; }
    .timeline-step { width: 100%; display: flex; align-items: center; gap: 2rem; text-align: left; }
    .step-icon { margin: 0; }
    .pkg-card { flex: 0 0 85%; }
}


/* ==========================================================================
   Top Deals (Carousel)
   ========================================================================== */
.top-deals {
    padding: 6rem 0;
    overflow: hidden;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.carousel-card {
    flex: 0 0 350px;
    background-color: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(216,177,92,0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.carousel-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.carousel-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price strong {
    font-size: 1.3rem;
    color: var(--accent);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--accent);
    width: 25px;
    border-radius: 5px;
}

/* ==========================================================================
   Top Destinations Grid
   ========================================================================== */
.top-destinations {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.dest-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dest-card:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.dest-card:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.dest-card:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.dest-card:nth-child(5) { grid-column: span 1; grid-row: span 1; }

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 59, 53, 0.9) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.dest-overlay h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.dest-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(216, 177, 92, 0.4);
    transform: translateY(-5px);
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card:hover .dest-overlay h3 {
    transform: translateY(0);
    color: var(--accent);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-choose-us {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background-color: rgba(216, 177, 92, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.glass-card:hover .icon-wrap {
    background-color: var(--accent);
    color: var(--primary-bg);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 2rem;
}

.testimo-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimo-card {
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
}

.stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    border: 2px solid var(--accent);
}

.client-info h4 {
    color: var(--secondary-accent);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Destination Page Styles
   ========================================================================== */
.destination-page {
    background-color: var(--primary-bg);
}

.dest-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.dest-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.dest-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,59,53,0.3) 0%, var(--primary-bg) 100%);
}

.dest-hero-content h1 {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.dest-hero-content p {
    font-size: 1.5rem;
}

.dest-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.dest-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.dest-section {
    margin-bottom: 4rem;
}

.dest-section h2 {
    font-size: 2rem;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(216,177,92,0.2);
    padding-bottom: 0.5rem;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mini-gallery img {
    border-radius: 10px;
    height: 150px;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mini-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.highlights-list li, .included ul li, .excluded ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlights-list i { color: var(--accent); }
.included ul i { color: #4CAF50; }
.excluded ul i { color: #F44336; }

.day-card {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
}

.day-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.hotel-card {
    background: rgba(10, 74, 67, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(216,177,92,0.2);
}

.hotel-card i {
    color: var(--accent);
    font-size: 0.9rem;
}

.dest-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.faq p {
    color: var(--text-secondary);
}

/* Sticky Sidebar */
.dest-sidebar {
    position: relative;
}

.sticky-booking {
    position: sticky;
    top: 100px;
}

.price-box {
    margin: 1.5rem 0;
    text-align: center;
}

.price-label { color: var(--text-secondary); font-size: 0.9rem;}
.price-amount { color: var(--accent); font-size: 3rem; margin: 0;}
.price-person { color: var(--text-secondary); font-size: 0.8rem;}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: inherit;
}

.booking-form input:focus, .booking-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.sidebar-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    width: 100%;
    margin: 0;
    background-color: #03211e;
    padding: 70px 0 25px;
}

.footer-container {
    width:90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 50px;
}

.footer-logo {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: var(--text-primary);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-bg);
}

.footer-col h4 {
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--accent);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--primary-bg);
    cursor: pointer;
}

.footer-bottom{
    width:90%;
    max-width:1400px;
    margin:40px auto 0;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}
/* Footer Logo */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-logo-img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.footer-logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.footer-logo-text .reveal-text{
    font-size:1.6rem;
    font-weight:700;
    color:#fff;
}

.footer-subtitle{
    font-size:0.72rem;
    color:#d4d4d4;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-top:2px;
}

/* ILS Collectives Link */
.ils-credit{
    color:#FFD700;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.ils-credit:hover{
    color:#fff;
    text-shadow:0 0 10px #FFD700;
}
/* ==========================================================================
   Animations & Keyframes Utilities (Scroll Reveal)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-page { background-color: var(--primary-bg); }
.about-page #navbar { background: rgba(6, 59, 53, 0.9); }

/* Paper Tear Transition */
.paper-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}
.paper-half {
    flex: 1;
    background-color: #F8F2E8; /* Warm Ivory */
    position: relative;
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.tear-edge-top, .tear-edge-bottom {
    position: absolute;
    width: 100%;
    height: 30px;
    fill: #F8F2E8;
    left: 0;
}
.tear-edge-top { bottom: -29px; }
.tear-edge-bottom { top: -29px; transform: scaleY(-1); }

body.loaded .paper-transition-layer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease 1.2s, visibility 0s ease 1.7s;
}
body.loaded .paper-transition-layer .top-half {
    transform: translateY(-100%);
}
body.loaded .paper-transition-layer .bottom-half {
    transform: translateY(100%);
}
body.page-exit {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* About Hero */
.about-hero {
    position: relative;
    background-color: #F8F2E8;
    color: var(--text-secondary);
    padding: 160px 2rem 100px;
    margin-top: 0;
}
.torn-edge-top {
    position: absolute; top: -1px; left: 0; width: 100%; height: 25px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 2" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L0,2 L5,1 L10,2 L15,0 L20,2 L25,1 L30,2 L35,0 L40,2 L45,1 L50,2 L55,0 L60,2 L65,1 L70,2 L75,0 L80,2 L85,1 L90,2 L95,0 L100,2 L100,0 Z" fill="%23063B35"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 10;
}
.torn-edge-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%; height: 25px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 2" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L5,1 L10,0 L15,2 L20,0 L25,1 L30,0 L35,2 L40,0 L45,1 L50,0 L55,2 L60,0 L65,1 L70,0 L75,2 L80,0 L85,1 L90,0 L95,2 L100,0 L100,2 L0,2 Z" fill="%23063B35"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 10;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.scrapbook-collage {
    position: relative;
    height: 500px;
    background: transparent;
}
.collage-item {
    position: absolute;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.collage-item:hover {
    transform: scale(1.05) rotate(2deg) !important;
    z-index: 5;
}
.main-photo {
    width: 65%;
    top: 20px;
    left: 10%;
    transform: rotate(-3deg);
    z-index: 2;
}
.main-photo img, .polaroid-photo img { width: 100%; height: auto; border: 1px solid #ddd; }
.polaroid-photo {
    width: 45%;
    bottom: 30px;
    right: 5%;
    transform: rotate(5deg);
    z-index: 3;
    padding-bottom: 40px;
}
.polaroid-text {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: #444;
}
.tape {
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.top-left { top: -10px; left: -20px; transform: rotate(-45deg); }
.bottom-right { bottom: -10px; right: -20px; transform: rotate(-45deg); }
.top-center { top: -10px; left: 50%; transform: translateX(-50%) rotate(0deg); }

.decorative-leaf { position: absolute; top: 10%; right: 10%; font-size: 3rem; color: #8CAF82; transform: rotate(15deg); z-index: 1; opacity: 0.7; }
.passport-stamp { position: absolute; bottom: 20%; left: 0%; font-size: 4rem; color: #C66B6B; transform: rotate(-25deg); z-index: 4; opacity: 0.6; }
.travel-sticker { position: absolute; top: 40%; left: 40%; font-size: 2.5rem; color: var(--accent); transform: rotate(10deg); z-index: 4; }
.shadow-icon { filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1)); }

.gold-heading {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.stagger-reveal .reveal-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s forwards;
    color: #2E2E2E;
}
.stagger-reveal .reveal-line:nth-child(2) { animation-delay: 0.3s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.about-hero-content p { color: #2E2E2E; font-size: 1.1rem; line-height: 1.8; }
.about-hero-content .stagger-reveal { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; }

/* Vision & Mission */
.vision-mission-section { padding: 6rem 2rem; background: var(--primary-bg); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1300px; margin: 0 auto; }
.premium-card { background: rgba(10, 74, 67, 0.6); padding: 3rem; text-align: center; border: 1px solid rgba(216, 177, 92, 0.3); }
.premium-card h3 { font-size: 1.8rem; margin: 1rem 0; color: var(--text-primary); }
.luxury-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; font-size: 2.5rem; background: transparent; border: 2px solid var(--accent); }

/* Stats */
.stats-section { padding: 5rem 2rem; background: var(--secondary-bg); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1300px; margin: 0 auto; text-align: center; }
.stat-card .stat-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.stat-counter { display: inline-block; font-size: 4rem; color: var(--text-primary); margin: 0; }
.stat-card span { font-size: 4rem; color: var(--accent); font-weight: 800; }
.stat-card p { font-size: 1.2rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* CEO Note */
.ceo-section { padding: 8rem 2rem; background: var(--primary-bg); }
.ceo-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: center; }
.ceo-circle { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; border: 5px solid var(--accent); box-shadow: 0 15px 40px rgba(0,0,0,0.3); margin: 0 auto; }
.ceo-circle img { width: 100%; height: 100%; object-fit: cover; }
.elegant-quote { font-size: 1.5rem; font-style: italic; line-height: 1.6; margin: 2rem 0; color: var(--text-primary); border-left: 4px solid var(--accent); padding-left: 1.5rem; }
.ceo-signature h5 { font-size: 1.5rem; color: var(--secondary-accent); }
.ceo-signature p { color: var(--text-secondary); margin: 0; }

/* Trust Grid */
.trust-section { padding: 6rem 2rem; background: var(--secondary-bg); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1300px; margin: 0 auto; }
.interactive-card { text-align: center; padding: 2.5rem; cursor: default; }
.interactive-card:hover { border-color: var(--accent); }
.interactive-card:hover .icon-wrap { transform: scale(1.1) rotate(5deg); }

/* Glow Btn */
.glow-btn { box-shadow: 0 0 15px rgba(216, 177, 92, 0); }
.glow-btn:hover { box-shadow: 0 0 25px rgba(216, 177, 92, 0.6); }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-socials {
        justify-content: center;
    }
    .destinations-grid, .features-grid, .masonry-grid, .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        column-count: 2;
    }
    .about-container, .vm-grid, .ceo-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .ceo-content .elegant-quote {
        text-align: left;
    }
    .dest-card:nth-child(1), .dest-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .dest-main {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .carousel-card {
        flex: 0 0 45%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu, .nav-button {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--accent);
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }

    .highlight-script {
        font-size: 3.5rem;
    }

    .destinations-grid, .features-grid, .masonry-grid, .dest-split, .trust-grid, .stats-grid {
        grid-template-columns: 1fr;
        column-count: 1;
    }
    .scrapbook-collage {
        height: 350px;
    }
    .main-photo { width: 75%; }
    .about-hero-content .stagger-reveal { font-size: 2.5rem; }
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    .carousel-card {
        flex: 0 0 85%;
    }
    
    .dest-hero-content h1 {
        font-size: 2.5rem;
    }
    .hotels-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Packages Page & Cinematic Elements
   ========================================================================== */
.packages-page { background: var(--primary-bg); overflow-x: hidden; }

/* 1. Portal Transition */
.portal-layer {
    position: fixed; inset: 0; z-index: 10000;
    background: radial-gradient(circle at center, #0A4A43 0%, #063B35 100%);
    display: flex; justify-content: center; align-items: center;
    pointer-events: none; opacity: 1; transition: opacity 0.8s ease 2s;
}
.portal-stars {
    position: absolute; inset: 0;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.3;
    animation: starsMove 10s linear infinite;
}
.portal-map {
    width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D8B15C" stroke-width="0.5" stroke-dasharray="2,2"/></svg>') no-repeat center;
    background-size: contain; opacity: 0.2;
    animation: pulseMap 2s ease-in-out infinite alternate;
}
.portal-plane {
    font-size: 4rem; color: var(--text-primary); position: absolute;
    animation: flyThrough 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
body.loaded .portal-layer { opacity: 0; visibility: hidden; }

@keyframes starsMove { from { transform: translateY(0); } to { transform: translateY(-50px); } }
@keyframes pulseMap { from { transform: scale(0.9); opacity: 0.1;} to { transform: scale(1.1); opacity: 0.3;} }
@keyframes flyThrough {
    0% { transform: translate(-100vw, 50vh) scale(0.5) rotate(45deg); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translate(100vw, -50vh) scale(2) rotate(45deg); opacity: 0; }
}

/* 2. Spotlight & Floating */
.cursor-spotlight {
    position: fixed; top: 0; left: 0;
    width: 600px; height: 600px; pointer-events: none;
    background: radial-gradient(circle, rgba(216,177,92,0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%); z-index: 100;
    transition: width 0.3s, height 0.3s;
}
.floating-items-container {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.float-icon {
    position: absolute; font-size: 2rem; color: rgba(255,255,255,0.05);
    animation: floatRandom 20s infinite linear alternate;
}
.i-1 { top: 20%; left: 10%; animation-duration: 25s; }
.i-2 { top: 60%; right: 15%; animation-duration: 18s; font-size: 3rem; }
.i-3 { bottom: 15%; left: 20%; animation-duration: 22s; transform: rotate(45deg); }
.i-4 { top: 30%; right: 25%; animation-duration: 30s; }
@keyframes floatRandom {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(36deg); }
}

/* 3. Hero Parallax */
.packages-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; padding-top: 100px;
}
.parallax-bg {
    position: absolute; inset: -10%; z-index: 0;
}
.parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.px-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(6,59,53,0.7) 0%, var(--primary-bg) 100%);
}
.px-hero-content {
    position: relative; z-index: 2; max-width: 900px; padding: 2rem;
}
.px-hero-content h1 { font-size: 5rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 20px rgba(0,0,0,0.5); }
.magnetic-btn { position: relative; display: inline-flex; overflow: hidden; }

/* 4. Stranger Year Trip */
.stranger-year-section { padding: 4rem 2rem 8rem; position: relative; z-index: 5; }
.stranger-card {
    max-width: 900px; margin: 0 auto; text-align: center;
    background: rgba(10, 74, 67, 0.7); padding: 4rem; position: relative;
    border: 1px solid var(--accent); box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.badge-exclusive {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--primary-bg); padding: 0.5rem 1.5rem;
    border-radius: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
}
.cinematic-text {
    font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(216,177,92,0.4);
}
.year-selector { margin: 2rem 0; font-size: 1.5rem; display: flex; justify-content: center; align-items: center; gap: 1rem; }
.year-box {
    position: relative; background: var(--text-primary); color: var(--primary-bg);
    padding: 0.5rem 2rem; border-radius: 10px; font-weight: 800; font-size: 2rem;
}
.trip-meta { display: flex; justify-content: space-around; margin: 3rem 0; text-align: left; }
.meta-item { display: flex; align-items: center; gap: 1rem; }
.meta-item i { font-size: 2rem; color: var(--accent); }
.meta-item span { display: block; font-size: 0.9rem; color: var(--text-secondary); }
.meta-item strong { display: block; font-size: 1.2rem; }

/* Countdown */
.countdown-wrapper { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.countdown { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.time-box .num { display: block; font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent); }
.time-box .lbl { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

/* Floating Features */
.stranger-features {
    position: absolute; inset: 0; pointer-events: none; z-index: 4;
}
.feat-card {
    position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600;
    border: 1px solid rgba(216,177,92,0.3); white-space: nowrap;
    animation: floatBob 6s infinite ease-in-out alternate;
}
.float-a { top: 0%; left: 0%; } 
.float-b { top: 20%; right: 0%; animation-delay: 1s; }
.float-c { bottom: 15%; left: 0%; animation-delay: 2s; } 
.float-d { bottom: 0%; right: 10%; animation-delay: 0.5s; }
.float-e { top: 40%; left: -5%; animation-delay: 1.5s; } 
.float-f { top: 60%; right: 0%; animation-delay: 2.5s; }
@keyframes floatBob { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }

/* 5. Packages Marquee / Slider */
.premium-packages { padding: 6rem 0; overflow: hidden; }
.marquee-container { width: 100%; overflow-x: auto; padding: 2rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.marquee-container::-webkit-scrollbar { display: none; }
.pkg-track { display: flex; gap: 2.5rem; padding-bottom: 2rem; }
.pkg-card {
    flex: 0 0 400px; scroll-snap-align: center; border-radius: 20px; overflow: hidden;
    background: rgba(10, 74, 67, 0.4); border: 1px solid rgba(216,177,92,0.15);
}
.pkg-card:hover { border-color: var(--accent); transform: translateY(-10px) rotateX(2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.pkg-img { height: 250px; position: relative; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pkg-card:hover .pkg-img img { transform: scale(1.1); }
.pkg-rating { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); padding: 5px 10px; border-radius: 15px; font-size: 0.8rem; color: var(--accent); }
.pkg-info { padding: 1.5rem; }
.pkg-info h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.pkg-info .duration, .pkg-info .location { display: block; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.pkg-info p { font-size: 0.95rem; margin: 1rem 0; color: #D8D8D8; }
.pkg-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.pkg-actions .price { font-size: 1.5rem; font-weight: 800; color: var(--accent); }

/* 6. Compare & Timeline */
.compare-section { padding: 6rem 2rem; background: var(--secondary-bg); }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.compare-card { background: rgba(6, 59, 53, 0.8); border-radius: 20px; padding: 3rem 2rem; border: 1px solid rgba(255,255,255,0.1); position: relative; transition: var(--transition-smooth); }
.compare-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.compare-card.popular { border-color: var(--accent); transform: scale(1.05); background: rgba(10, 74, 67, 0.9); z-index: 2; }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--primary-bg); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 800; }
.compare-card h3 { text-align: center; margin-bottom: 2rem; font-size: 1.8rem; color: var(--secondary-accent); }
.compare-card ul li { margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.compare-card ul li.disabled { color: rgba(255,255,255,0.3); }

.timeline-section { padding: 6rem 2rem; }
.timeline-wrapper { display: flex; justify-content: space-between; position: relative; max-width: 1000px; margin: 3rem auto; }
.timeline-line { position: absolute; top: 30px; left: 0; width: 100%; height: 2px; background: rgba(216,177,92,0.2); z-index: 1; }
.timeline-step { text-align: center; z-index: 2; position: relative; width: 120px; }
.step-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--primary-bg); border: 2px solid var(--accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--accent); transition: 0.4s; }
.timeline-step:hover .step-icon { background: var(--accent); color: var(--primary-bg); transform: scale(1.2); box-shadow: 0 0 15px rgba(216, 177, 92, 0.5); }
.timeline-step h5 { font-size: 1rem; color: var(--text-primary); }

.story-card { max-width: 800px; margin: 0 auto; text-align: center; padding: 4rem 2rem; }
.story-user { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.story-user img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--accent); }

/* Responsive Overrides */
@media (max-width: 992px) {
    .stranger-features, .cursor-spotlight { display: none; }
    .trip-meta { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
    .px-hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
    .compare-card.popular { transform: none; }
    .timeline-wrapper { flex-direction: column; gap: 3rem; }
    .timeline-line { top: 0; left: 50px; width: 2px; height: 100%; }
    .timeline-step { width: 100%; display: flex; align-items: center; gap: 2rem; text-align: left; }
    .step-icon { margin: 0; }
    .pkg-card { flex: 0 0 85%; }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: pulseWhatsapp 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1ebe5d;
    color: white;
}
@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Page Specific: Contact */
.contact-hero {
    padding: 150px 2rem 5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(6,59,53,0.9), var(--primary-bg)), url('assets/hero_travel.png') center/cover;
}
.contact-hero h1 { font-size: 4rem; margin-bottom: 1rem; }
.contact-content { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-cards { display: flex; flex-direction: column; gap: 2rem; }
.contact-card { background: rgba(10, 74, 67, 0.5); padding: 2rem; border-radius: 20px; border: 1px solid rgba(216,177,92,0.2); transition: var(--transition-fast); }
.contact-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.contact-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-secondary); overflow-wrap: anywhere; }

/* Premium White & Gold Form */
.contact-form-wrapper { background: var(--text-primary); border-radius: 20px; padding: 3rem; color: #2E2E2E; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.contact-form h2 { color: #2E2E2E; margin-bottom: 2rem; font-size: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-weight: 600; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: #F8F2E8;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(216,177,92,0.3);
    background: white;
}
.contact-form .btn-primary { width: 100%; margin-top: 1rem; background: var(--primary-bg); color: var(--accent); border-radius: 10px; }
.contact-form .btn-primary:hover { background: var(--accent); color: var(--primary-bg); }

/* Google Maps Placeholder */
.map-placeholder { width: 100%; height: 400px; background: #eee; border-radius: 20px; display: flex; justify-content: center; align-items: center; margin-top: 4rem; color: #666; font-weight: 600; font-size: 1.2rem; border: 2px dashed #ccc; }

@media (max-width: 768px) {
    .contact-content { grid-template-columns: 1fr; padding: 2rem 1rem; }
    .contact-cards { gap: 1.5rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .contact-form h2 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .contact-hero h1 { font-size: 2.5rem; }
}

/* Blog & Blog Details CSS */
.blog-hero { padding: 150px 2rem 5rem; text-align: center; background: linear-gradient(rgba(6,59,53,0.8), rgba(0,0,0,0.4)), url('assets/hero_travel.png') center/cover; }
.blog-hero h5 { color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.blog-hero h1 { font-size: 4rem; margin-bottom: 1rem; }
.blog-hero p { max-width: 700px; margin: 0 auto; color: var(--text-secondary); font-size: 1.1rem; }

.blog-grid-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.blog-card { background: var(--secondary-bg); border-radius: 20px; overflow: hidden; border: 1px solid rgba(216,177,92,0.2); transition: var(--transition-smooth); }
.blog-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.blog-img-wrapper { height: 250px; overflow: hidden; position: relative; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.1); }
.blog-content { padding: 2rem; }
.blog-meta { display: block; font-size: 0.9rem; color: var(--accent); margin-bottom: 0.5rem; }
.blog-content h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.blog-content p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.btn-read-more { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-primary); font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid var(--accent); }
.btn-read-more:hover { color: var(--accent); }

/* Blog Details specific */
.blog-details-hero { position: relative; padding: 15rem 2rem 5rem; color: #fff; overflow: hidden; }
.bd-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.6; }
.bd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, var(--primary-bg)); z-index: -1; }
.bd-hero-content { max-width: 1000px; margin: 0 auto; position: relative; }
.btn-back { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); border-radius: 20px; backdrop-filter: blur(5px); }
.btn-back:hover { background: var(--accent); color: var(--primary-bg); }
.bd-hero-content h1 { font-size: 3.5rem; max-width: 800px; }

.blog-full-content { padding: 4rem 2rem; }
.blog-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr; gap: 4rem; }
.blog-story p { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem; }
.blog-story h2, .blog-story h3 { margin: 2rem 0 1rem; color: var(--text-primary); }
.blog-story ul { list-style: none; padding: 0; margin-bottom: 2rem; }
.blog-story ul li { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.blog-story ul li i { color: var(--accent); }

.blog-sidebar { position: sticky; top: 120px; }
.blog-sidebar h3 { margin-bottom: 1.5rem; }
.related-blog-card { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.related-blog-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.related-blog-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.related-blog-card a { color: var(--accent); font-size: 0.9rem; }

@media (max-width: 768px) {
    .blog-container { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 2.5rem; }
    .bd-hero-content h1 { font-size: 2rem; }
}

/* Page Transition Animation */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.transition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.transition-plane {
    font-size: 3rem;
    color: var(--accent);
    animation: dottedPath 1s ease-in-out forwards;
}

@keyframes dottedPath {
    0% { transform: translateX(-100px) translateY(50px) rotate(45deg); opacity: 0; }
    100% { transform: translateX(100px) translateY(-50px) rotate(45deg); opacity: 1; }
}

.transition-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    gap: 1rem;
}

.transition-text span {
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.5s forwards;
}

.transition-text span:nth-child(1) { animation-delay: 0.3s; }
.transition-text span:nth-child(2) { animation-delay: 0.5s; color: var(--accent); }

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

.trip-started {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 800;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.05); opacity: 1; }
}

.reveal-text {
    display: inline-block;
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: revealWord 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    transform: translateY(100%);
}

.reveal-text span:nth-child(1) { animation-delay: 0.1s; }
.reveal-text span:nth-child(2) { animation-delay: 0.3s; color: var(--accent); }

@keyframes revealWord {
    to { transform: translateY(0); }
}

/* Stranger Trips & Holidor Custom Classes */
.st-hero {
    padding: 150px 2rem 5rem;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.st-title {
    font-size: 3.5rem;
}
.st-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .st-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: span 1;
    }
    .st-hero, .contact-hero {
        padding: 120px 1.5rem 4rem;
    }
}

@media (max-width: 768px) {
    .st-title {
        font-size: 2.5rem;
    }
    .st-content {
        gap: 2rem;
    }
    .st-hero, .contact-hero {
        padding: 100px 1rem 3rem;
    }
}
