/* ============================================================================
   BASE STYLES - From @dist template
   ============================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap");

/* ============================================================================
   DAY DESCRIPTION IMAGE HOVER EFFECT
   ============================================================================ */
.day-description-image {
    cursor: pointer;
}

.day-description-image:hover {
    transform: scale(1.15) !important;
}

/* ============================================================================
   IMAGE LIGHTBOX MODAL
   ============================================================================ */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.image-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: transform 0.2s ease;
    user-select: none;
}

.image-lightbox-close:hover {
    transform: scale(1.2);
}

.image-lightbox-esc-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* ============================================================================
   COLOR VARIABLES - Based on Tourago Travel Logo
   ============================================================================ */
:root {
    --tourago-orange: #FF6B35;        /* Sun element - accent color */
    --tourago-teal: #2EC4B6;          /* Body element - secondary color */
    --tourago-dark-blue: #1B3A57;     /* Text color - primary text */
    --tourago-light-blue: #4A90A4;    /* Lighter text variant */
    --tourago-black: #000000;         /* Background */
    --tourago-dark-bg: #1a1a1a;      /* Dark background */
    --fs-body: clamp(14px, 0.95vw, 18px);
    --fs-small: clamp(12px, 0.75vw, 14px);
    --fs-h1: clamp(28px, 4.4vw, 72px);
    --fs-h2: clamp(24px, 3.2vw, 52px);
    --fs-h3: clamp(20px, 2.2vw, 34px);
    --fs-h4: clamp(17px, 1.45vw, 26px);
    --fixed-nav-offset: 92px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #fff;
    color: #333;
    position: relative;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    font-size: var(--fs-body);
}

p, li, a, button, input, textarea, select, label, span {
    font-size: inherit;
}

h1 { font-size: var(--fs-h1); line-height: 1.12; }
h2 { font-size: var(--fs-h2); line-height: 1.18; }
h3 { font-size: var(--fs-h3); line-height: 1.24; }
h4 { font-size: var(--fs-h4); line-height: 1.28; }

small, .small-text { font-size: var(--fs-small); }

/* ============================================================================
   NAVIGATION - Sticky header from @dist template
   ============================================================================ */
nav {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important; /* Higher z-index to ensure it's always on top, especially when viewing trip details */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 36px;
    min-height: 80px;
    max-height: 80px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
}

nav * {
    pointer-events: auto !important;
}

/* Ensure nav links are clickable */
nav .nav-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
}

nav .nav-link:hover {
    pointer-events: auto !important;
}

/* Prevent fixed header from covering section starts */
section[id],
.page-section,
.homepage-section,
.planning-template-section {
    scroll-margin-top: var(--fixed-nav-offset);
}

/* Ensure language switcher is clickable */
.language-switcher,
.language-switcher * {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.lang-btn,
.lang-option {
    pointer-events: auto !important;
    cursor: pointer !important;
}

nav svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
    fill: #000000;
}

nav .svg-container {
    width: 20px;
    height: 20px;
}

nav > div {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
}

nav > div:first-child {
    gap: 10px;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    overflow: visible;
    flex-shrink: 0;
    min-width: 0;
}

/* Logo styling - FIXED */
.logo-link {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    height: 100%;
    flex-shrink: 0;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    max-height: 140px !important;  /* Much bigger logo for normal desktop size */
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    /* Remove white background - multiply blend mode makes white transparent */
    mix-blend-mode: multiply;
    background: transparent;
}

/* Responsive logo sizes */
@media (min-width: 1200px) {
    .nav-logo {
        max-height: 160px !important;  /* Extra large on big screens */
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .nav-logo {
        max-height: 140px !important;  /* Large on tablets and laptops */
    }
}

/* Alternative: Use darken blend mode for better white removal */
@media (prefers-color-scheme: light) {
    .nav-logo {
        mix-blend-mode: darken;
    }
}

/* ============================================================================
   LANGUAGE SWITCHER
   ============================================================================ */
.language-switcher {
    position: relative;
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--tourago-orange);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lang-dropdown.active ~ .lang-btn svg,
.lang-btn:focus svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001 !important;  /* Higher z-index to appear above content */
    overflow: hidden;
    pointer-events: none;  /* Prevent blocking clicks when hidden */
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;  /* Enable clicks when active */
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--tourago-orange);
}

.lang-option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.lang-option:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Language switcher responsive */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 120px;
    }
}

@media (min-width: 769px) {
    /* Ensure language switcher is visible on desktop and inline */
    .language-switcher {
        display: inline-block !important;
        visibility: visible !important;
        position: relative !important;
    }
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.logo-svg {
    display: block;
    width: 200px;
    height: auto;
    max-height: 80px;
}

.logo-svg svg {
    width: 100%;
    height: 100%;
    max-height: 80px;
}

nav > div:last-child {
    gap: 24px;
    position: relative;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow: visible;
    flex-shrink: 0;
    margin-left: auto;
}

/* Desktop Navigation - Show by default, hide on mobile */
.nav-desktop {
    display: flex !important;
    align-items: center !important;
    gap: 24px;
    flex-wrap: nowrap !important;  /* Prevent wrapping */
}

/* Mobile Menu Toggle Button - Hidden by default, shown on mobile */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;  /* Larger for better touch target */
    height: 40px;  /* Larger for better touch target */
    min-width: 40px;  /* Ensure minimum size */
    min-height: 40px;  /* Ensure minimum size */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;  /* Larger padding for easier clicking */
    z-index: 10002 !important;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);  /* Better touch feedback */
    touch-action: manipulation;  /* Prevent double-tap zoom */
}

.hamburger-line {
    width: 100%;
    height: 4px;  /* Slightly thicker for better visibility when zoomed */
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;  /* Prevent line clicks from interfering */
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 10001;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: var(--tourago-orange);
    color: #fff;
}

.mobile-menu-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
    opacity: 0.8;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--tourago-orange);
    padding-left: 30px;
}

.mobile-menu-actions {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

/* Mobile Search */
.mobile-search-container {
    margin-bottom: 30px;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.mobile-search-box:focus-within {
    border-color: var(--tourago-orange);
}

#mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

#mobile-search-input::placeholder {
    color: #999;
}

.mobile-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s ease;
}

.mobile-search-btn:hover {
    color: var(--tourago-orange);
}

.mobile-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-language-switcher label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-lang-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-lang-btn {
    padding: 12px 16px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--tourago-orange);
    color: var(--tourago-orange);
}

.mobile-lang-btn.active {
    background: var(--tourago-orange);
    border-color: var(--tourago-orange);
    color: #fff;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.search-toggle-btn:hover {
    transform: scale(1.1);
}

.search-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
}

.search-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--tourago-orange);
    border-radius: 25px;
    padding: 8px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease;
    z-index: 10001;
    white-space: nowrap;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    width: 280px;
}

#search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    width: 100%;
    flex: 1;
    min-width: 0;
}

#search-input::placeholder {
    color: #999;
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.search-close-btn:hover {
    opacity: 1;
}

.search-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: #333;
}

/* When search is active, move nav items slightly to the left to make room */
nav.search-active > div:last-child {
    transform: translateX(-290px);
    transition: transform 0.3s ease;
}

/* Ensure nav links remain visible and don't shrink too much */
nav.search-active .nav-link {
    flex-shrink: 0;
    white-space: nowrap;
}

nav.search-active .language-switcher {
    flex-shrink: 0;
}

/* Ensure all nav items are visible */
nav > div:last-child > * {
    flex-shrink: 0;
}

/* Search Results Container */
.search-results-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-results-container.active {
    display: block;
    opacity: 1;
}

.search-results-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 36px;
}

#search-results-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--tourago-orange);
}

.search-results-list {
    display: grid;
    gap: 20px;
}

.search-result-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: var(--tourago-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.search-result-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--tourago-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.search-result-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.search-result-item .result-type {
    display: inline-block;
    background: var(--tourago-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.search-highlight {
    background: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Tablet and below (768px and smaller) - Also handles zoom scenarios */
@media (max-width: 768px) {
    /* Hide desktop navigation on mobile/tablet */
    .nav-desktop {
        display: none !important;
    }
    
    /* Show hamburger menu button */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 10002 !important;
        width: 44px !important;  /* Even larger on mobile for touch */
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }
}

/* High zoom scenarios (when viewport width is effectively small due to zoom) */
@media (max-width: 1024px) {
    /* Show mobile menu when zoomed in on desktop */
    @media (max-width: 1024px) and (min-resolution: 200dpi) {
        .nav-desktop {
            display: none !important;
        }
        
        .mobile-menu-toggle {
            display: flex !important;
            z-index: 10002 !important;
        }
    }
}

/* Ensure mobile menu works on touch devices */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-toggle {
        display: flex !important;
        width: 48px !important;  /* Extra large for touch */
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        padding: 10px !important;
    }
    
    .nav-desktop {
        display: none !important;
    }
}
    
    /* Hide desktop search on mobile */
    .search-container {
        display: none !important;
    }
    
    /* Adjust nav padding for mobile */
    nav {
        padding: 15px 20px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    .nav-logo {
        max-height: 70px !important;  /* Bigger on mobile too */
        width: auto !important;
    }
    
    .search-box.active {
        width: 200px;
    }
    
    nav.search-active > div:last-child {
        transform: translateX(-210px);
    }
    
    .search-results-content {
        padding: 20px;
    }
    
    /* On mobile, reduce gap between nav items when search is active */
    nav.search-active > div:last-child {
        gap: 12px;
    }
    
    /* Mobile optimizations for sections */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Reduce padding on mobile */
    .homepage-section,
    .trips-section,
    .who-we-are-section,
    .faq-section,
    .contact-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Mobile search results */
    .search-results-container {
        top: 70px !important;
    }
}

/* Tablet (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Check if effectively small due to zoom - if so, show mobile menu */
    /* For zoom scenarios, we check if nav-desktop would overflow */
    .nav-desktop {
        display: flex !important;
    }
    
    /* Hide mobile menu toggle on tablets (unless zoomed) */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Ensure mobile menu overlay is hidden on tablets */
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Show desktop search on tablets */
    .search-container {
        display: flex !important;
    }
    
    /* Adjust nav gap for tablets */
    .nav-desktop {
        gap: 16px;
    }
    
    /* Smaller font sizes for nav links on tablets */
    nav .nav-link {
        font-size: 13px;
    }
}

/* When viewport is effectively small (due to zoom > 200% or actual mobile), show mobile menu */
/* This handles zoom scenarios where viewport width becomes small */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10002 !important;
    }
}

/* Laptop and desktop (1025px and above) */
@media (min-width: 1025px) {
    /* Ensure desktop nav is visible */
    .nav-desktop {
        display: flex !important;
    }
    
    /* Hide mobile menu toggle on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Ensure mobile menu overlay is hidden on desktop */
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Show desktop search */
    .search-container {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    nav {
        padding: 12px 15px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    .nav-logo {
        max-height: 40px !important;
    }
    
    .mobile-menu-content {
        width: 90%;
    }
    
    .mobile-menu-header h2 {
        font-size: 20px;
    }
    
    .mobile-nav-link {
        font-size: 14px;
        padding: 14px 15px;
    }
    
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .search-results-container {
        top: 60px !important;
    }
}

nav .nav-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

nav .nav-link:hover {
    color: var(--tourago-orange);
}

nav .nav-link.active {
    position: relative;
    color: #000000;
}

nav .nav-link.active:after {
    bottom: -8px;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    height: 3px;
    border-radius: 99px;
    background-color: var(--tourago-orange);
}

/* ============================================================================
   HOMEPAGE SECTION - Hero and thumbnails
   ============================================================================ */
.homepage-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Progress Indicator */
.indicator {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    z-index: 99;
    background-color: var(--tourago-orange);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

/* Hero Container */
.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default; /* normal cursor for card-style layout */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity;
    transform-origin: center center;
    transform: scale(1.02);
}

.hero-image.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

/* Zoom-out animation class */
.hero-image.zoom-out {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
    will-change: transform, opacity;
}

/* Hero Details Overlay */
.hero-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.details {
    z-index: 40; /* ensure text stays above cards and controls */
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    pointer-events: auto;
    max-width: 420px;
}

/* Slide-in animation for hero text on each change */
.details.hero-text-animating {
    animation: heroTextSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroTextSlideIn {
    from {
        opacity: 0;
        transform: translate(-20px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.details .place-box {
    height: 46px;
    overflow: hidden;
}

.details .place-box .text {
    padding-top: 16px;
    font-size: 20px;
    color: #fff;
}

.details .place-box .text:before {
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background-color: white;
}

.details .title-1,
.details .title-2 {
    font-weight: 600;
    font-size: 72px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    color: #fff;
}

.details .title-box-1,
.details .title-box-2 {
    margin-top: 2px;
    min-height: 82px;
    height: auto;
    overflow: visible;
}

.details .title-box-2:empty,
.details .title-box-2:has(.title-2:empty) {
    display: none;
}

.details > .desc {
    margin-top: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.details > .cta {
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.details > .cta > .discover {
    border: 1px solid #ffffff;
    background-color: transparent;
    height: 36px;
    border-radius: 99px;
    color: #ffffff;
    padding: 4px 24px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details > .cta > .discover:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--tourago-orange);
}

/* Thumbnails */
.thumbnails-container {
    position: absolute;
    right: 32px;
    bottom: 80px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    z-index: 25;
    align-items: flex-end;
    /* Prevent layout shift when thumbnails zoom - allow overflow */
    overflow: visible;
}

.thumbnail {
    width: 180px;
    height: 260px;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    outline: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transform-origin: center center;
}

.thumbnail:focus {
    border-color: var(--tourago-orange);
    outline: 2px solid var(--tourago-orange);
    outline-offset: 2px;
}

.thumbnail:hover,
.thumbnail.active,
.thumbnail.zoomed {
    border-color: var(--tourago-orange);
    transform: translateY(-3px) scale(1.08); /* Reduce zoom so thumbnails don't cover text */
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    z-index: 30;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover .thumbnail-image {
    transform: scale(1.1);
}

/* Pagination */
.pagination {
    position: absolute;
    right: -60px;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.pagination > .arrow {
    z-index: 60;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 2px solid #ffffff55;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.pagination > .arrow:focus {
    border-color: var(--tourago-orange);
    outline: 2px solid var(--tourago-orange);
    outline-offset: 2px;
}

.pagination > .arrow:hover {
    border-color: var(--tourago-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.pagination > .arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #ffffff99;
}

.pagination .progress-sub-container {
    z-index: 60;
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
}

.pagination .progress-sub-container .progress-sub-background {
    width: 300px;
    height: 3px;
    background-color: #ffffff33;
}

.pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
    height: 3px;
    background-color: var(--tourago-orange);
    transition: width 0.5s ease;
}

.pagination .slide-numbers {
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 60;
    position: relative;
}

.pagination .slide-numbers .item {
    width: 50px;
    height: 50px;
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
}

/* ============================================================================
   PAGE SECTIONS - Secondary pages with smooth scroll
   ============================================================================ */
.page-section {
    min-height: 100vh;
    background-color: #fff;
    color: #333;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Planning Template Layout - Based on @planing.jpg */
.planning-template-section {
    padding: 0;
}

.planning-header-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 80px;
}

.planning-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.planning-header-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.planning-title {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.planning-content {
    padding: 60px 0;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* About Us section specific - full width */
#who-we-are .planning-content {
    padding: 60px 0;
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

/* ============================================================================
   TRIPS SECTION - Enhanced Design
   ============================================================================ */
.trips-section {
    background-color: #fff;
    padding: 0;
    min-height: auto;
}

.trips-header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}

.trips-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.trips-header-left {
    flex: 1;
}

.trips-label {
    display: block;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trips-main-title {
    font-family: "Oswald", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.5px;
}

.trips-header-right {
    flex: 1;
    text-align: right;
}

.trips-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
}

.trips-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    position: relative;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
    padding: 0;
}

/* When a card is expanded, make it span full width */
.trip-card-expanded {
    grid-column: 1 / -1;
}

.trip-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trip-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--tourago-orange), var(--tourago-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.trip-card:hover::before {
    opacity: 1;
}

.trip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--tourago-orange);
}

.trip-card-image {
    width: 100%;
    height: 280px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px 16px 0 0;
}

.trip-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trip-card:hover .trip-card-image {
    transform: scale(1.1);
}

.trip-card:hover .trip-card-image::after {
    opacity: 1;
}

.trip-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
    position: relative;
    z-index: 2;
}

/* Location Badge - Pill-shaped tag matching image design */
.trip-location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--tourago-teal);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trip-location-badge .location-icon {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

/* Card Header with Title and Rating */
.trip-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.trip-card-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.trip-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.trip-card-rating .star-icon {
    width: 16px;
    height: 16px;
    fill: #FFD700;
    stroke: #FFD700;
    color: #FFD700;
}

.trip-card-rating span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Price */
.trip-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
}

/* Quick Facts - Matching image design */
.trip-quick-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trip-quick-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.trip-fact-icon {
    width: 16px;
    height: 16px;
    stroke: var(--tourago-teal);
    fill: none;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.trip-quick-fact span {
    flex: 1;
    color: #666;
}

/* Booking Button - Matching image design */
.trip-card-btn {
    border: none;
    background-color: var(--tourago-teal);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
    font-family: "Inter", sans-serif;
}

.trip-card-btn:hover {
    background-color: var(--tourago-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.4);
}

.trip-card-btn:active {
    transform: translateY(0);
}

/* Expanded Trip Details - Inline on main page */
.trip-details-expanded {
    width: 100%;
    padding: 40px;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    border-top: 3px solid var(--tourago-orange);
    margin-top: 0;
    overflow: hidden;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 5000px;
        padding-top: 40px;
        padding-bottom: 40px;
        transform: translateY(0);
    }
}

.trip-details-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.trip-details-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.95);
    border: 2px solid var(--tourago-orange);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trip-details-close:hover {
    background-color: var(--tourago-orange);
    color: #fff;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.trip-details-close:active {
    transform: rotate(90deg) scale(1.05);
}

.trip-details-close svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.trip-details-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.trip-details-title {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trip-details-subtitle {
    font-size: 18px;
    color: var(--tourago-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.trip-description-section {
    margin-bottom: 40px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.trip-description {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    text-align: justify;
    display: block;
    visibility: visible;
    opacity: 1;
}

.trip-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.trip-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--tourago-orange);
    border-radius: 2px;
}

/* Trip Gallery */
.trip-gallery-section {
    margin-bottom: 40px;
}

.trip-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.trip-gallery-item {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trip-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* Quick Facts Grid */
.trip-quick-facts-section {
    margin-bottom: 40px;
}

.trip-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.trip-fact-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--tourago-teal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trip-fact-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 8px;
}

.trip-fact-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    font-family: "Inter", sans-serif;
}

.trip-contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--tourago-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trip-contact-details {
    margin-top: 20px;
}

.trip-contact-details p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.trip-contact-details strong {
    color: var(--tourago-dark-blue);
    font-weight: 600;
    margin-right: 8px;
}

.trip-card-expanded {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
    border: 2px solid var(--tourago-orange);
    transform: scale(1.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Full-page single trip view - Hide all other cards */
.trips-section.showing-single-trip-view {
    min-height: 100vh;
    padding: 40px 0;
}

.trips-grid.showing-single-trip {
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    animation: fadeInGrid 0.4s ease;
}

@keyframes fadeInGrid {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.trip-card-full-view {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInScale 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.trip-card-full-view .trip-card-image {
    height: 500px;
    border-radius: 16px 16px 0 0;
}

.trip-card-full-view .trip-card-content {
    padding: 40px;
}

.trip-card-full-view .trip-details-expanded,
.trip-details-expanded[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideDownFull 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 40px;
    max-height: none !important;
    height: auto !important;
}

@keyframes slideDownFull {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 5000px;
        padding-top: 60px;
        padding-bottom: 60px;
        transform: translateY(0);
    }
}

/* Hide other cards when showing single trip */
.trips-grid.showing-single-trip .trip-card:not(.trip-card-full-view) {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Smooth transitions for header */
.trips-header-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Ensure cards have initial state for animations */
.trip-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

/* Back to Trips Button */
.back-to-trips-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--tourago-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: slideInButton 0.4s ease 0.2s both;
}

@keyframes slideInButton {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-to-trips-btn:hover {
    background-color: #ff8550;
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.back-to-trips-btn:active {
    transform: translateX(-2px);
}

.back-to-trips-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.back-to-trips-btn:hover svg {
    transform: translateX(-2px);
}

.back-to-trips-btn span {
    font-weight: 600;
}

/* ============================================================================
   CONTENT CONTAINER
   ============================================================================ */
.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.contact-item h3 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: var(--tourago-dark-blue);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
}

.social-media-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f9f9f9;
    color: var(--tourago-dark-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: var(--tourago-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Contact layout & form */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 40px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 320px;
}

.contact-form-card {
    flex: 1 1 360px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 28px 32px 32px;
    border: 1px solid #e5e5e5;
}

.contact-form-title {
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 8px 0;
}

.contact-form-subtitle {
    font-size: 14px;
    color: #777;
    margin: 0 0 24px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-row .form-field {
    flex: 1 1 180px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--tourago-orange);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.4);
    background-color: #fff;
}

.contact-submit-btn {
    margin-top: 8px;
    border: none;
    background-color: var(--tourago-orange);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    background-color: #ff8550;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.45);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.contact-form-note {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 0 30px 30px;
    }

    .contact-layout {
        gap: 32px;
    }

    .contact-form-card {
        padding: 24px 24px 28px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 20px 24px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Services Content */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.service-item {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 5px solid var(--tourago-orange);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-item h3,
.service-item h4 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Large screens - optimize spacing */
@media (min-width: 1400px) {
    .who-we-are-content {
        max-width: 1400px;
        padding: 0 80px;
    }
    
    .services-list {
        gap: 40px;
    }
    
    .service-item {
        padding: 45px 40px;
        min-height: 240px;
    }
    
    .about-us-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Who We Are Content */
.who-we-are-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.who-we-are-content .text-content {
    margin-bottom: 60px;
    width: 100%;
}

.who-we-are-content .text-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    width: 100%;
}

.who-we-are-content strong {
    color: var(--tourago-dark-blue);
}

/* About Us Gallery */
.about-us-gallery {
    margin-top: 80px;
    width: 100%;
    position: relative;
}

.about-us-gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-us-gallery-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.about-us-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    flex-shrink: 0;
    min-width: 100%;
}

.about-us-gallery-item {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-us-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.about-us-gallery-item:hover img {
    transform: scale(1.05);
}

.about-us-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--tourago-orange);
    color: var(--tourago-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-us-gallery-nav:hover {
    background-color: var(--tourago-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.about-us-gallery-nav.prev {
    left: 20px;
}

.about-us-gallery-nav.next {
    right: 20px;
}

.about-us-gallery-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.about-us-gallery-nav:disabled:hover {
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--tourago-orange);
}

.about-us-gallery-nav svg {
    width: 24px;
    height: 24px;
}

/* Medium screens - show 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-us-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .about-us-gallery-nav {
        width: 45px;
        height: 45px;
    }
    
    .about-us-gallery-nav.prev {
        left: 15px;
    }
    
    .about-us-gallery-nav.next {
        right: 15px;
    }
}

/* ============================================================================
   DESTINATION OVERLAYS - Full-screen overlay pages
   ============================================================================ */
.destination-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.destination-overlay-content {
    position: relative;
    width: 100%;
    min-height: 100%;
    background-color: var(--tourago-dark-bg);
    color: #FFFFFFDD;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-overlay-content:has(.ghardaia-two-column-content),
.destination-overlay-content:has([style*="background-color: #fff"]),
.destination-overlay[data-destination-id="djanet"] .destination-overlay-content,
.destination-overlay[data-destination-id="oasis"] .destination-overlay-content {
    background-color: #fff;
}

.destination-overlay.overlay-active .destination-overlay-content {
    transform: translateY(0);
}

.destination-overlay-scrollable {
    padding: 0;
    padding-top: 170px; /* Space for main nav (80px) + overlay header (90px) */
}

.destination-overlay-scrollable:has(.ghardaia-two-column-content) {
    background-color: #fff;
    padding-top: 0;
}

.destination-overlay-scrollable:has(.destination-header) {
    padding-top: 0;
}

.destination-overlay[data-destination-id="djanet"] .destination-overlay-content,
.destination-overlay[data-destination-id="oasis"] .destination-overlay-content,
.destination-overlay[data-destination-id="ghardaia"] .destination-overlay-content,
.destination-overlay[data-destination-id="algeria-road-trip"] .destination-overlay-content {
    background-color: #fff;
    color: #333;
}

.destination-overlay[data-destination-id="djanet"] .destination-overlay-scrollable,
.destination-overlay[data-destination-id="oasis"] .destination-overlay-scrollable,
.destination-overlay[data-destination-id="ghardaia"] .destination-overlay-scrollable,
.destination-overlay[data-destination-id="algeria-road-trip"] .destination-overlay-scrollable,
.destination-overlay[data-destination-id="luxury-safari"] .destination-overlay-scrollable {
    background-color: #fff;
    padding-top: 0;
}

.destination-overlay[data-destination-id="djanet"] .destination-overlay-header,
.destination-overlay[data-destination-id="oasis"] .destination-overlay-header,
.destination-overlay[data-destination-id="ghardaia"] .destination-overlay-header,
.destination-overlay[data-destination-id="algeria-road-trip"] .destination-overlay-header,
.destination-overlay[data-destination-id="luxury-safari"] .destination-overlay-header {
    display: none; /* Hide fixed header when using destination-header */
}

.destination-overlay[data-destination-id="djanet"] .overlay-header-title,
.destination-overlay[data-destination-id="oasis"] .overlay-header-title {
    color: #1a1a1a;
}

.destination-overlay[data-destination-id="djanet"] .overlay-header-subtitle,
.destination-overlay[data-destination-id="oasis"] .overlay-header-subtitle {
    color: #666;
}

/* Fixed Header for Destination Overlays */
.destination-overlay-header {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    background-color: var(--tourago-dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.overlay-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.overlay-header-text {
    flex: 1;
    min-width: 0;
}

.overlay-header-title {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.overlay-header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.overlay-header-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--tourago-orange);
    color: var(--tourago-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
}

.overlay-header-back-btn:hover,
.overlay-header-back-btn:focus {
    background-color: var(--tourago-orange);
    color: #fff;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    outline: none;
}

.overlay-header-back-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.overlay-header-back-btn:hover svg {
    transform: translateX(-2px);
}

.overlay-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overlay-close-btn:hover,
.overlay-close-btn:focus {
    background-color: var(--tourago-orange);
    border-color: var(--tourago-orange);
    transform: scale(1.1);
    outline: none;
}

.overlay-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Destination content inside overlay */
.destination-overlay-scrollable .destination-header {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 0;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    display: block;
}

.destination-overlay-scrollable .destination-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.destination-overlay-scrollable .destination-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--tourago-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.destination-overlay-scrollable .destination-back-btn:hover {
    background-color: #fff;
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.destination-overlay-scrollable .destination-back-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.destination-overlay-scrollable .destination-back-btn:hover svg {
    transform: translateX(-2px);
}

.destination-overlay-scrollable .destination-header-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    padding-bottom: 100px;
}

.destination-overlay-scrollable .destination-title {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-overlay-scrollable .destination-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.destination-main-content {
    flex: 1;
    min-width: 0;
    order: 1;
}

/* Fixed Booking Sidebar */
.destination-booking-sidebar {
    position: sticky;
    top: 60px;
    width: 300px;
    flex-shrink: 0;
    height: fit-content;
    order: 2;
    overflow: visible;
}

.booking-sidebar-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #e0e0e0;
    overflow: visible;
    max-height: none;
}

.booking-price {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--tourago-orange);
    margin-bottom: 3px;
}

.booking-price-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--tourago-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.booking-guarantees {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #555;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-note,
.booking-visa-assistance,
.booking-contact {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-note:last-child,
.booking-visa-assistance:last-child,
.booking-contact:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-note p,
.booking-visa-assistance p {
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.booking-contact p {
    font-size: 11px;
    line-height: 1.4;
    margin: 0 0 4px 0;
    color: #666;
}

.booking-contact p:last-child {
    margin-bottom: 0;
}

.booking-note strong,
.booking-visa-assistance strong,
.booking-contact strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.booking-contact-item a {
    color: var(--tourago-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-contact-item a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Responsive: Hide sidebar on smaller screens */
@media (max-width: 1200px) {
    .destination-overlay-scrollable .destination-content {
        flex-direction: column;
    }
    
    .destination-booking-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        max-height: none;
    }
}

/* Tour Details Grid Responsive */
@media (max-width: 1024px) {
    .destination-main-content [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .destination-main-content [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

.destination-overlay-scrollable .destination-content:has(.ghardaia-two-column-content) {
    background-color: #fff;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.destination-overlay-scrollable .destination-content:has(.oasis-brochure-content),
.destination-overlay-scrollable .destination-content:has(.ghardaia-two-column-content) {
    background-color: #fff;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.destination-overlay-scrollable .oasis-brochure-content,
.destination-overlay-scrollable .ghardaia-two-column-content,
.destination-overlay-scrollable .algeria-cities-content {
    background-color: #fff;
}

.destination-overlay:has(.oasis-brochure-content) .destination-overlay-content,
.destination-overlay:has(.ghardaia-two-column-content) .destination-overlay-content,
.destination-overlay:has(.algeria-cities-content) .destination-overlay-content {
    background-color: #fff;
    border-top: none;
}

.destination-overlay:has(.oasis-brochure-content) .destination-overlay-scrollable,
.destination-overlay:has(.ghardaia-two-column-content) .destination-overlay-scrollable,
.destination-overlay:has(.algeria-cities-content) .destination-overlay-scrollable {
    padding-top: 0;
}

/* Gallery container in destination overlays */
.destination-gallery-container {
    width: 100%;
    margin: 30px 0;
    background-color: transparent;
}

.destination-overlay-scrollable .destination-description {
    margin-bottom: 60px;
}

.destination-overlay-scrollable .destination-description h2 {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-overlay-scrollable .destination-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #FFFFFFDD;
}

.destination-overlay-scrollable .destination-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.destination-overlay-scrollable .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.destination-overlay-scrollable .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-overlay-scrollable .gallery-item:hover img {
    transform: scale(1.05);
}

.destination-overlay-scrollable .destination-itinerary {
    margin-top: 60px;
}

.destination-overlay-scrollable .destination-itinerary h2 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-overlay-scrollable .destination-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.destination-overlay-scrollable .back-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--tourago-orange);
    color: var(--tourago-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.destination-overlay-scrollable .back-link-btn:hover,
.destination-overlay-scrollable .back-link-btn:focus {
    background-color: var(--tourago-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    outline: none;
}

/* ============================================================================
   OASIS PAGE - Brochure Style Layout
   ============================================================================ */

/* Oasis Brochure Container */
.destination-overlay-scrollable .oasis-brochure-content {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #fff;
}

/* Oasis Brochure Page */
.oasis-brochure-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Oasis Brochure Image */
.oasis-brochure-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* ============================================================================
   GHARDAIA TWO-COLUMN BROCHURE LAYOUT
   ============================================================================ */

/* Ghardaia Two Column Container */
.destination-overlay-scrollable .ghardaia-two-column-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
}

/* Ghardaia Row (contains two columns) */
.ghardaia-row {
    display: flex;
    gap: 20px;
    width: 100%;
    min-height: 600px;
}

/* Small consistent spacing for Algeria cities */
.algeria-cities-content .ghardaia-row {
    gap: 8px;
}

.algeria-cities-content .ghardaia-two-column-content {
    gap: 8px;
    padding: 20px;
}

/* Algeria Cities Introduction */
.algeria-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.algeria-intro h2 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.algeria-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Ghardaia Column (each image) */
.ghardaia-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    overflow: hidden;
}

/* If only one column in row (like last image), center it */
.ghardaia-row:has(.ghardaia-column:only-child) {
    justify-content: center;
}

.ghardaia-row:has(.ghardaia-column:only-child) .ghardaia-column {
    max-width: 50%;
}

/* Ghardaia Brochure Image */
.ghardaia-brochure-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: top;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* ============================================================================
   ALGERIA BOOK STYLE LAYOUT
   ============================================================================ */

/* Algeria Book Container */
.destination-overlay-scrollable .algeria-book-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Book Navigation */
.book-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.book-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--tourago-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-nav-btn:hover:not(.disabled) {
    background-color: #ff8550;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.book-nav-btn:active:not(.disabled) {
    transform: translateY(0);
}

.book-nav-btn.disabled,
.book-nav-btn:disabled {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.book-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.book-page-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.current-page {
    color: var(--tourago-orange);
    min-width: 30px;
    text-align: center;
}

.page-separator {
    color: rgba(255, 255, 255, 0.5);
}

.total-pages {
    color: rgba(255, 255, 255, 0.7);
    min-width: 30px;
    text-align: center;
}

/* Book Viewer */
.book-viewer {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.book-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.book-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transform: translateX(20px);
}

.book-page.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.book-page-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Introduction Section */
.oasis-hero-intro {
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(46, 196, 182, 0.1) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--tourago-orange);
}

.oasis-hero-text {
    max-width: 900px;
}

.oasis-main-title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.oasis-subtitle {
    font-size: 24px;
    color: var(--tourago-orange);
    margin: 0 0 24px 0;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.oasis-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #FFFFFFDD;
    margin: 0;
}

/* Program Section */
.oasis-program-section {
    margin: 60px 0;
}

.oasis-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--tourago-orange);
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.oasis-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--tourago-orange);
    border-radius: 2px;
}

/* Day Cards */
.oasis-day-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
    padding: 30px;
    border-left: 4px solid var(--tourago-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.oasis-day-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.day-number {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--tourago-orange);
    min-width: 60px;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: none !important;
}

.day-title {
/* Remove day number spacing where headers use it */
.day-header {
    gap: 0;
}

    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-content {
    padding-left: 0;
}

.day-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.day-activities li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #FFFFFFDD;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.day-activities li:last-child {
    border-bottom: none;
}

.day-activities li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--tourago-orange);
    font-weight: bold;
    font-size: 20px;
    top: 12px;
}

.day-activities li:hover {
    color: #fff;
    padding-left: 40px;
}

.day-note {
    margin-top: 20px;
    padding: 16px 20px;
    background-color: rgba(46, 196, 182, 0.1);
    border-left: 3px solid var(--tourago-teal);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFFDD;
}

.day-note strong {
    color: var(--tourago-teal);
    font-weight: 600;
}

/* Pricing Section */
.oasis-pricing-section {
    margin: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-title {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-value {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--tourago-orange);
    line-height: 1;
}

.price-currency {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFFDD;
}

.included-card,
.not-included-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--tourago-teal);
    backdrop-filter: blur(10px);
}

.not-included-card {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.card-title {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.included-list,
.not-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li,
.not-included-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #FFFFFFDD;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tourago-teal);
    font-weight: bold;
    font-size: 20px;
}

.not-included-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    font-size: 18px;
}

.included-list li:last-child,
.not-included-list li:last-child {
    border-bottom: none;
}

.oasis-note-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 32px;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.oasis-note-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #FFFFFFDD;
}

.oasis-note-box strong {
    color: #fff;
    font-weight: 600;
}

/* Legacy Program sections styling (for Djanet) */
.destination-overlay-scrollable .djanet-program {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--tourago-orange);
}

.destination-overlay-scrollable .djanet-program h3 {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--tourago-orange);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.destination-overlay-scrollable .djanet-program h4 {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.destination-overlay-scrollable .djanet-program ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.destination-overlay-scrollable .djanet-program li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #FFFFFFDD;
    line-height: 1.6;
}

.destination-overlay-scrollable .djanet-program li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tourago-orange);
    font-size: 20px;
    line-height: 1;
}

.destination-overlay-scrollable .djanet-program p {
    color: #FFFFFFDD;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Responsive styles for overlays */
@media (max-width: 768px) {
    .destination-overlay-scrollable .destination-content {
        counter-reset: itineraryDay;
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100%;
        background-color: #fff;
    }

    .destination-overlay,
    .destination-overlay-scrollable,
    .destination-overlay-scrollable .destination-content,
    .destination-main-content,
    .destination-booking-sidebar,
    .booking-sidebar-content {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Prevent inline desktop blocks from forcing horizontal scroll on mobile */
    div[style*="width: 100%; height: 100%; min-height:"] {
        max-width: 100% !important;
    }

    .overlay-close-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .destination-overlay-scrollable {
        padding-top: 200px; /* Space for main nav + overlay header on mobile */
    }
    
    .overlay-header-content {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .overlay-header-title {
        font-size: 24px;
    }
    
    .overlay-header-subtitle {
        font-size: 14px;
    }
    
    .overlay-header-back-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .destination-overlay-scrollable .destination-content {
        padding: 40px 20px;
    }
    
    .destination-overlay-scrollable .destination-header {
        height: 200px;
    }
    
    .destination-overlay-scrollable .destination-description h2 {
        font-size: 32px;
    }
    
    .destination-overlay-scrollable .destination-gallery {
        grid-template-columns: 1fr;
    }
    
    .destination-overlay-scrollable .oasis-program,
    .destination-overlay-scrollable .djanet-program {
        padding: 20px;
    }
    
    .destination-overlay-scrollable .oasis-program h3,
    .destination-overlay-scrollable .djanet-program h3 {
        font-size: 28px;
    }
    
    /* Oasis Brochure Mobile Responsive */
    .oasis-brochure-page {
        max-width: 100%;
    }
    
    .oasis-brochure-image {
        width: 100%;
        height: auto;
    }
    
    /* Ghardaia Two Column Mobile Responsive */
    .ghardaia-row {
        flex-direction: column;
        gap: 10px;
        min-height: auto;
    }
    
    .ghardaia-column {
        width: 100%;
    }
    
    .ghardaia-row:has(.ghardaia-column:only-child) .ghardaia-column {
        max-width: 100%;
    }
    
    .destination-overlay-scrollable .ghardaia-two-column-content {
        padding: 10px;
        gap: 10px;
    }
    
    /* Algeria Book Mobile Responsive */
    .algeria-book-container {
        padding: 20px 10px;
    }
    
    .book-navigation {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .book-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .book-page-indicator {
        order: -1;
        font-size: 18px;
    }
    
    .book-viewer {
        min-height: 400px;
    }
    
    .book-page-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }
    
    .nav-logo {
        max-height: 120px;
    }
    
    .planning-content .trips-grid,
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trips-header-wrapper {
        padding: 60px 20px 40px;
    }
    
    .trips-main-title {
        font-size: 32px;
    }
    
    .trips-description {
        font-size: 14px;
    }
    
    .trip-card-image {
        height: 200px;
    }
    
    .trip-card-content {
        padding: 20px;
    }
    
    .trip-card-title {
        font-size: 18px;
    }
    
    .trip-card-price {
        font-size: 18px;
    }
    
    .trip-card-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
    
    .trip-details-expanded {
        padding: 24px 20px;
    }
    
    .trip-details-title {
        font-size: 32px;
    }
    
    .trip-details-subtitle {
        font-size: 16px;
    }
    
    .trip-description {
        font-size: 16px;
    }
    
    .trip-section-title {
        font-size: 26px;
    }
    
    .trip-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trip-facts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trip-contact-info {
        padding: 20px;
    }
    
    .trip-contact-details p {
        font-size: 14px;
    }
    
    .trip-details-close {
        width: 40px;
        height: 40px;
        top: -12px;
        right: -12px;
    }
    
    .trip-details-close svg {
        width: 20px;
        height: 20px;
    }
    
    .trip-details-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .trips-grid.showing-single-trip {
        padding: 0 20px;
    }
    
    .trip-card-full-view .trip-card-image {
        height: 300px;
    }
    
    .trip-card-full-view .trip-card-content {
        padding: 30px 20px;
    }
    
    .trip-card-full-view .trip-details-expanded {
        padding: 40px 20px;
    }
    
    .back-to-trips-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin-bottom: 30px;
        width: 100%;
        justify-content: center;
    }
    
    .destination-back-btn {
        padding: 10px 16px;
        font-size: 14px;
        top: 15px;
        left: 15px;
    }
    
    .destination-back-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .destination-overlay-scrollable .destination-header {
        height: 200px;
        margin-top: 0;
    }
    
    .destination-header {
        height: 200px;
    }
    
    .trip-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trip-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .overlay-header-content {
        padding: 12px 16px;
    }
    
    .overlay-header-title {
        font-size: 20px;
    }
    
    .overlay-header-subtitle {
        font-size: 13px;
    }
    
    .overlay-header-back-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .overlay-header-back-btn span {
        display: none; /* Hide text on very small screens */
    }
    
    .overlay-header-back-btn svg {
        margin: 0;
    }
}

.destination-header {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 0;
}

.destination-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.destination-header {
    background-position: center;
    background-size: cover;
}

.destination-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--tourago-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.destination-back-btn:hover {
    background-color: #fff;
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.destination-back-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.destination-back-btn:hover svg {
    transform: translateX(-2px);
}

.destination-back-btn span {
    font-weight: 600;
}

.destination-header-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    padding-bottom: 100px;
}

.destination-title {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.destination-content {
    padding: 60px 0;
    background-color: #fff;
}

.destination-description {
    margin-bottom: 60px;
}

.destination-description h2 {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Destination Gallery */
.destination-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

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

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

/* Itinerary Styles - Based on @planing.jpg */
.destination-itinerary {
    margin-top: 60px;
}

/* Journey Overview + Journey Highlights responsive ordering */
@media (max-width: 1024px) {
    div[style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Show Journey Overview first, then Journey Highlights */
    div[style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] > :first-child {
        order: 1;
    }

    div[style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] > :last-child {
        order: 2;
    }
}

/* Hide day numbers in day-by-day itinerary cards */
div[style*="grid-template-columns: 80px 1fr 380px"] {
    grid-template-columns: 1fr minmax(220px, 320px) !important;
    align-items: start !important;
}

/* Ensure text uses the left column and image stays right (no empty left gutter) */
div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column {
    grid-column: 1 !important;
}

div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column {
    grid-column: 2 !important;
    align-self: start !important;
    height: auto !important;
}

/* Fallback for cards that don't use day-text/day-media classes */
div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) {
    grid-column: 1 !important;
    align-self: start !important;
}

div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child {
    grid-column: 2 !important;
    align-self: start !important;
}

div[style*="grid-template-columns: 80px 1fr 380px"] > div[style*="font-size: 48px; font-weight: 700; color: #ff6b35"] {
    display: none !important;
}

/* Make day-by-day itinerary images fluid on zoom/resize */
div:has(> img.day-description-image),
[id^="djanet-day-"][id$="-image"] {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
}

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

.destination-itinerary h2 {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.itinerary-days {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.itinerary-day {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.itinerary-day h3 {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 1px;
}

.day-image-left,
.day-image-right {
    flex: 0 0 350px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.day-image-left img,
.day-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-content {
    flex: 1;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #ddd 0px,
        #ddd 8px,
        transparent 8px,
        transparent 16px
    );
}

.time-slot {
    position: relative;
    margin-bottom: 50px;
}

.time-slot:last-child {
    margin-bottom: 0;
}

.time-marker {
    position: absolute;
    left: -26px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--tourago-orange);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--tourago-orange);
    z-index: 2;
}

.time-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--tourago-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-left: 5px;
}

.activity::before {
    content: "✔";
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.destination-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.back-link {
    display: inline-block;
    color: var(--tourago-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #d99a20;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 968px) {
    .planning-content .trips-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .details {
        left: 30px;
        top: 180px;
    }
    
    .details > .desc {
        width: 90%;
        max-width: 500px;
    }
    
    .details > .cta {
        width: 90%;
        max-width: 500px;
    }
    
    .thumbnails-container {
        right: -40px;
        bottom: 90px;
        transform: none;
        flex-direction: row;
        gap: 15px;
    }
    
    .thumbnail {
        width: 130px;
        height: 173px;
    }
    
    .pagination {
        right: -30px;
        bottom: 20px;
        transform: none;
        gap: 12px;
    }
    
    .pagination .progress-sub-container {
        width: 200px;
    }
    
    .pagination .progress-sub-container .progress-sub-background {
        width: 200px;
    }
    
    .pagination > .arrow {
        width: 40px;
        height: 40px;
    }
    
    .pagination .slide-numbers {
        width: 40px;
        height: 40px;
    }
    
    .pagination .slide-numbers .item {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .itinerary-day {
        flex-direction: column;
    }
    
    .day-image-left,
    .day-image-right {
        flex: 1;
        width: 100%;
        height: 400px;
    }
    
    .destination-title {
        font-size: 48px;
    }
    
    .destination-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --fixed-nav-offset: 82px;
    }

    /* Smaller title typography on mobile */
    h1 { font-size: clamp(24px, 7vw, 32px); }
    h2 { font-size: clamp(21px, 6.1vw, 28px); }
    h3 { font-size: clamp(18px, 5.3vw, 24px); }
    h4 { font-size: clamp(16px, 4.6vw, 20px); }

    nav {
        padding: 8px 12px;
        min-height: 62px;
        max-height: 62px;
    }

    /* Journey Overview: add left/right space on mobile */
    div[style*="padding: 60px 40px"][style*="margin: 0 -40px 60px -40px"] {
        padding: 40px 16px !important;
        margin: 0 0 40px 0 !important;
    }
    
    .nav-logo {
        max-height: 105px;
    }
    
    .logo-container img {
        width: 118px;
        max-height: 48px;
    }
    
    .logo-svg {
        width: 118px;
        max-height: 48px;
    }
    
    nav > div:last-child {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .planning-content {
        padding: 40px 20px;
    }

    /* Day-by-day itinerary descriptions: smaller text on mobile */
    div[style*="grid-template-columns: 80px 1fr 380px"] li[style*="padding: 10px 0"] {
        font-size: 14px !important;
        line-height: 1.45 !important;
        padding: 6px 0 6px 18px !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] p[style*="font-style: italic"] {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    /* Mobile day-card flow with square-like text wrap around image */
    div[style*="grid-template-columns: 80px 1fr 380px"] {
        display: block !important;
        counter-increment: itineraryDay;
        padding: 20px 16px !important;
    }

    /* Hard fallback: target any image column inside day cards, even without helper classes */
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:has(img.day-description-image) {
        float: right !important;
        width: min(38vw, 210px) !important;
        margin: 0 0 10px 12px !important;
        height: auto !important;
        min-height: 0 !important;
        align-self: start !important;
    }

    /* Luxury Safari mobile: reduce image size to avoid oversized cards */
    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > div:has(img.day-description-image),
    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column,
    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child {
        width: min(38vw, 210px) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > div:has(img.day-description-image) > div,
    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column > div,
    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child > div {
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
    }

    .destination-overlay[data-destination-id="luxury-safari"] div[style*="grid-template-columns: 80px 1fr 380px"] img.day-description-image {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] > div:has(img.day-description-image) > div {
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: 4 / 3;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"]::after {
        content: "";
        display: block;
        clear: both;
    }

    /* Hide separate day-number block */
    div[style*="grid-template-columns: 80px 1fr 380px"] > div[style*="font-size: 48px; font-weight: 700; color: #ff6b35"] {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Remove any leftover left indent where day numbers used to be */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2),
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(3) {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    /* Make text children participate directly in wrap flow with the image */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column {
        display: contents !important;
    }
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) {
        display: contents !important;
    }

    /* Day title */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > h3,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > h3 {
        margin: 0 0 8px 0 !important;
        font-size: 28px !important;
        line-height: 1.06 !important;
    }

    /* Add day number as part of title text (e.g. 01 - Arrival...) */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > h3::before,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > h3::before {
        content: counter(itineraryDay, decimal-leading-zero) " - ";
        color: #ff6b35;
        font-family: "Oswald", sans-serif;
        font-weight: 700;
    }

    /* Day list and note wrap around floated image */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > ul,
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > p,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > ul,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > p {
        display: block;
    }

    /* Image floated right so text wraps like Word "Square" */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child {
        float: right;
        width: min(38vw, 210px) !important;
        margin: 0 0 10px 12px;
        display: block;
    }

    /* Keep image block in the same flow without forcing extra height */
    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column > div,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child > div,
    [id^="djanet-day-"][id$="-image"] {
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: 4 / 3;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] img.day-description-image {
        width: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Keep note in the same wrap flow as description text */
    div[style*="grid-template-columns: 80px 1fr 380px"] p[style*="font-style: italic"] {
        clear: none;
        width: 100% !important;
    }
    
    .planning-header-section {
        height: 240px;
        margin-top: 60px;
    }
    
    .planning-title {
        font-size: 30px;
    }
    
    .details .title-1,
    .details .title-2 {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .destination-title {
        font-size: 30px;
    }
    
    .destination-header {
        height: 240px;
        margin: -100px -20px 0 -20px;
    }
    
    .trips-grid,
    .planning-content .trips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trips-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .trips-header-right {
        text-align: left;
    }
    
    .trips-description {
        margin-left: 0;
        max-width: 100%;
    }
    
    .trips-main-title {
        font-size: 42px;
    }
    
    .trip-card-image {
        height: 220px;
    }
    
    .trip-card-content {
        padding: 20px;
    }
    
    .trip-card-title {
        font-size: 20px;
    }
    
    .trip-card-price {
        font-size: 18px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 40px;
        max-width: 100%;
    }
    
    .service-item {
        padding: 35px 28px;
        min-height: 200px;
    }
    
    .service-item h3,
    .service-item h4 {
        font-size: 18px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .who-we-are-content {
        padding: 0 40px;
        max-width: 100%;
    }
    
    .about-us-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .thumbnails-container {
        right: -20px;
        gap: 10px;
        flex-direction: row;
    }
    
    .thumbnail {
        width: 85px;
        height: 110px;
    }
    
    .pagination {
        right: -20px;
        transform: none;
        bottom: 14px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination .progress-sub-container {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .pagination .progress-sub-container .progress-sub-background {
        width: 150px;
    }
    
    .pagination > .arrow {
        width: 35px;
        height: 35px;
    }
    
    .pagination .slide-numbers {
        width: 35px;
        height: 35px;
    }
    
    .pagination .slide-numbers .item {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-item {
        padding: 30px 25px;
        min-height: 180px;
    }
    
    .service-item h3,
    .service-item h4 {
        font-size: 17px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .who-we-are-content .text-content {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .who-we-are-content {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-us-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-us-gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .about-us-gallery-nav.prev {
        left: 10px;
    }
    
    .about-us-gallery-nav.next {
        right: 10px;
    }
    
    .about-us-gallery-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .who-we-are-content p {
        font-size: 16px;
    }
    
    .destination-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .logo-container img {
        width: 120px;
        max-height: 55px;
    }
    
    .logo-svg {
        width: 120px;
        max-height: 55px;
    }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--tourago-orange);
    outline-offset: 2px;
}

/* ============================================================================
   FAQ SECTION STYLES
   ============================================================================ */
.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--tourago-orange);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f8f9fa;
    color: var(--tourago-orange);
}

.faq-question.active {
    background-color: #f8f9fa;
    color: var(--tourago-orange);
    border-bottom: 2px solid var(--tourago-orange);
}

.faq-question-text {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tourago-orange);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #fff;
    padding: 0 30px;
}

.faq-answer.active {
    max-height: 2000px;
    padding: 0 30px 24px;
}

.faq-answer p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.faq-answer strong {
    color: var(--tourago-dark-blue);
    font-weight: 600;
}

.faq-answer ul,
.faq-answer ol {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin: 8px 0;
    line-height: 1.7;
    color: #555;
}

/* Highlight visa-related questions */
.faq-item:has(.faq-question-text:contains("visa")) {
    border-left: 4px solid var(--tourago-orange);
}

/* Responsive styles for FAQ */
@media (max-width: 768px) {
    .faq-content {
        padding: 0 30px 40px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-answer.active {
        padding: 0 24px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-content {
        padding: 0 20px 30px;
    }

    /* Extra compact for very small phones */
    div[style*="grid-template-columns: 80px 1fr 380px"] li[style*="padding: 10px 0"] {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] p[style*="font-style: italic"] {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] {
        display: block !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > h3,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > h3 {
        font-size: 24px !important;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-text-column > h3::before,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:nth-child(2) > h3::before {
        font-size: 22px;
    }

    div[style*="grid-template-columns: 80px 1fr 380px"] > .day-media-column,
    div[style*="grid-template-columns: 80px 1fr 380px"] > div:last-child {
        width: min(40vw, 170px) !important;
        margin-left: 10px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
        gap: 15px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 0 20px 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--tourago-orange);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* ============================================================================
   BOOKING PAGE STYLES
   ============================================================================ */
.booking-page-section {
    background-color: #fff;
}

.booking-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.booking-form-column {
    background-color: #fff;
}

.booking-trip-info {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(46, 196, 182, 0.1) 100%);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid var(--tourago-orange);
}

.booking-trip-info h2 {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.booking-trip-price-display {
    font-size: 18px;
    font-weight: 600;
    color: var(--tourago-orange);
    margin: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.booking-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px;
}

.booking-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booking-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section-number {
    background-color: var(--tourago-orange);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.traveler-count {
    background-color: var(--tourago-teal);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
}

.add-traveler-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--tourago-teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.add-traveler-btn:hover {
    background-color: var(--tourago-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3);
}

.add-traveler-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.traveler-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.traveler-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.traveler-card-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
    margin: 0;
}

.remove-traveler-btn {
    background-color: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-traveler-btn:hover {
    background-color: #dc3545;
    color: #fff;
}

.booking-note-text {
    font-size: 13px;
    color: #666;
    margin: 16px 0 0 0;
    font-style: italic;
}

/* Payment Methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.payment-method-card {
    position: relative;
    cursor: pointer;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.payment-method-card:hover .payment-card-content {
    border-color: var(--tourago-orange);
    background-color: #fff8f5;
}

.payment-method-card input[type="radio"]:checked + .payment-card-content {
    border-color: var(--tourago-orange);
    background-color: #fff8f5;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.payment-card-content span {
    font-weight: 600;
    color: var(--tourago-dark-blue);
    font-size: 14px;
}

.booking-form-actions {
    margin-top: 8px;
}

.booking-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--tourago-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.booking-submit-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

.booking-form-note {
    font-size: 12px;
    color: #666;
    margin: 12px 0 0 0;
    text-align: center;
    line-height: 1.5;
}

/* Booking Summary */
.booking-summary-column {
    position: sticky;
    top: 100px;
}

.booking-summary-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.summary-title {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-trip-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.summary-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    color: var(--tourago-dark-blue);
    font-weight: 600;
    text-align: right;
}

.summary-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 24px 0;
}

.payment-breakdown {
    margin-bottom: 24px;
}

.breakdown-title {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breakdown-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.breakdown-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.breakdown-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
}

.breakdown-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--tourago-orange);
}

.breakdown-description {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.summary-total {
    margin-bottom: 24px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-row.highlight {
    padding-top: 16px;
    border-top: 2px solid var(--tourago-orange);
    margin-top: 8px;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--tourago-dark-blue);
}

.total-row.highlight .total-label {
    font-size: 18px;
    font-weight: 700;
}

.total-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--tourago-dark-blue);
}

.total-row.highlight .total-amount {
    font-size: 24px;
    color: var(--tourago-orange);
}

.summary-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.guarantee-badge svg {
    color: var(--tourago-teal);
    flex-shrink: 0;
}

.booking-back-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: transparent;
    border: 2px solid var(--tourago-orange);
    color: var(--tourago-orange);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-back-btn:hover {
    background-color: var(--tourago-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Booking Page */
@media (max-width: 1200px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-summary-column {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .booking-content-wrapper {
        padding: 40px 20px;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-section {
        padding: 20px;
    }
    
    .booking-trip-info {
        padding: 20px;
    }
    
    .booking-summary-card {
        padding: 20px;
    }
}

/* ============================================================================
   ITINERARY PAGE SECTION - Ensure nav stays visible
   ============================================================================ */
.itinerary-page-section {
    padding-top: 80px; /* Account for fixed nav */
}

/* Ensure itinerary hero section accounts for nav */
.itinerary-page-section .itinerary-hero {
    margin-top: 0; /* Remove top margin since nav is fixed */
}

/* ============================================================================
   RESERVATION CONFIRMATION MESSAGE
   ============================================================================ */
.reservation-confirmation {
    background-color: #fff;
    border-radius: 12px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-content {
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.confirmation-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

@keyframes scaleIn {
    from { 
        transform: scale(0);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirmation-message {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.confirmation-reference {
    background-color: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: left;
    font-size: 16px;
}

.confirmation-reference strong {
    color: #ff6b35;
    margin-right: 10px;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.confirmation-actions .btn-primary {
    background: #ff6b35;
    color: white;
}

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

.confirmation-actions .btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.confirmation-actions .btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Reservation Info Box */
.reservation-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.reservation-info-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.reservation-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .reservation-confirmation {
        padding: 40px 20px;
    }
    
    .confirmation-title {
        font-size: 24px;
    }
    
    .confirmation-message {
        font-size: 16px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: 80px;
    border-top: 3px solid var(--tourago-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tourago-orange);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--tourago-orange);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--tourago-orange);
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--tourago-orange);
    border-color: var(--tourago-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 15px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================================
   FLUID SCALE OVERRIDES (zoom-friendly, rem/em/clamp only)
   ============================================================================ */

:root {
    /* Typography scale (slightly larger so 100% looks like your 125%) */
    --fs-body: clamp(1.05rem, 1.15vw, 1.2rem);
    --fs-sm: clamp(0.9rem, 1vw, 1.05rem);
    --fs-md: clamp(1rem, 1.25vw, 1.25rem);
    --fs-lg: clamp(1.2rem, 2vw, 1.8rem);
    --fs-xl: clamp(1.5rem, 3vw, 2.4rem);
    --fs-xxl: clamp(1.8rem, 3.5vw, 2.8rem);

    /* Spacing scale (match the larger type so sections fill more space) */
    --space-xs: clamp(0.35rem, 0.6vw, 0.6rem);
    --space-sm: clamp(0.6rem, 1vw, 1.1rem);
    --space-md: clamp(0.9rem, 1.4vw, 1.5rem);
    --space-lg: clamp(1.2rem, 2vw, 2rem);
    --space-xl: clamp(1.8rem, 3vw, 3rem);
    --space-xxl: clamp(2.4rem, 4vw, 4rem);

    /* Layout: slightly wider container to use more horizontal space */
    --container-max: 80rem;
}

/* Base text */
html {
    font-size: 100%;
}

body {
    font-size: var(--fs-body);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

p,
li,
label,
input,
select,
textarea,
.booking-note-text,
.contact-form-note,
.contact-form-subtitle {
    font-size: var(--fs-md);
    line-height: 1.6;
}

small,
.booking-form-note,
.footer-bottom p {
    font-size: var(--fs-sm);
}

/* Headings */
h1,
.trips-main-title,
.planning-title {
    font-size: var(--fs-xxl);
    line-height: 1.2;
    letter-spacing: 0.03em;
}

h2,
.summary-title,
.contact-form-title {
    font-size: var(--fs-xl);
    line-height: 1.25;
    letter-spacing: 0.025em;
}

h3,
.booking-section-title,
.footer-title {
    font-size: var(--fs-lg);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h4,
h5,
h6 {
    font-size: var(--fs-md);
    line-height: 1.3;
}

/* Navigation & logo - use fluid spacing and sizes */
nav {
    padding: var(--space-sm) clamp(1.25rem, 3vw, 2.25rem) !important;
    min-height: clamp(4.5rem, 6vw, 5.5rem) !important;
    max-height: clamp(4.5rem, 6vw, 5.5rem) !important;
}

.nav-logo {
    height: clamp(4.5rem, 8vw, 8.75rem) !important;
    max-height: clamp(4.5rem, 8vw, 8.75rem) !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    background: transparent;
}

nav .nav-link,
.lang-btn,
.lang-option,
.mobile-nav-link,
.mobile-lang-btn,
.booking-submit-btn,
.booking-back-btn,
.add-traveler-btn,
.remove-traveler-btn,
.contact-submit-btn,
.contact-form .form-field label,
button {
    font-size: var(--fs-sm);
}

.trips-label,
.guarantee-badge span,
.status-badge {
    font-size: var(--fs-sm);
}

/* Containers */
.homepage-section,
.trips-section,
.planning-template-section,
.booking-page-section,
.page-section,
.trips-content-wrapper,
.planning-content,
.contact-content,
.booking-content-wrapper,
.contact-layout {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}

section,
.page-section {
    padding-block: var(--space-xl);
}

/* Prevent zoom/layout breaks on medium & small screens */
@media (max-width: 1024px) {
    body {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
    }
}

@media (max-width: 768px) {
    .contact-layout,
    .trips-header,
    .booking-layout {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .trips-main-title,
    .planning-title {
        text-align: left;
    }

    .footer-title {
        text-align: left;
    }
}