/*
Theme Name: Natourandes
Theme URI: 
Author: Cusco Creativos
Author URI: 
Description: Tema personalizado para Natourandes.
Version: 1.0.0
Text Domain: natourandes
*/

/* ==========================================================================
   Variables & Base Settings
   ========================================================================== */
:root {
    /* Brand Colors extracted from Logo */
    --primary-color: #2c9fa3; /* Teal / Turquoise */
    --secondary-color: #f88a27; /* Orange Accent */
    --dark-color: #1a3636; /* Deep teal for contrast */
    --bg-color: #ffffff;
    --text-color: #4a5568; /* Readable dark grey */
    --app-bar-bg: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Utility */
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html, body {
    overflow-x: hidden; /* Fixes "not responding" mobile scrolling issues caused by wide iframes */
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding-bottom: 70px; /* Space for the bottom bar in mobile */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 700;
    margin-top: 0;
}

/* ==========================================================================
   Header Settings — 3-Tier Desktop Header
   ========================================================================== */
.site-header {
    position: relative;
    z-index: 100;
}

/* --- TIER 1: Top Announcement Bar --- */
.top-announcement-bar {
    background: var(--secondary-color); /* Natourandes Orange */
    color: #fff;
    font-size: 0.82rem;
    text-align: center;
    padding: 8px 20px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.top-announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.top-announcement-bar p {
    margin: 0;
}

.top-announcement-bar a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-announcement-bar a:hover {
    text-decoration: none;
}

.close-announcement {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 0 5px;
}

.close-announcement:hover {
    opacity: 1;
}

/* --- TIER 2: Logo + Utility Row --- */
.header-middle {
    background: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.header-middle-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 55px;
    width: auto;
    display: block;
}

.header-utility {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.utility-links {
    display: flex;
    gap: 25px;
}

.utility-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.utility-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.utility-links a:hover {
    color: var(--primary-color);
}

.utility-links a:hover::before {
    width: 100%;
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.lang-switch {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.btn-header-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-header-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-header-solid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-color);
    color: #fff;
    padding: 7px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-header-solid:hover {
    background: var(--primary-color);
}

/* --- TIER 3: Main Navigation Bar --- */
.header-nav-bar {
    background: var(--dark-color); /* Deep teal #1a3636 */
    padding: 0 20px;
}

.header-nav-bar .container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-nav-bar .desktop-menu {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.header-nav-bar .desktop-menu ul,
.header-nav-bar #primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.header-nav-bar .desktop-menu li,
.header-nav-bar #primary-menu li {
    position: relative;
}

.header-nav-bar .desktop-menu a,
.header-nav-bar #primary-menu a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.header-nav-bar .desktop-menu a:hover,
.header-nav-bar #primary-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.header-nav-bar .desktop-menu a i {
    font-size: 0.55rem;
    opacity: 0.6;
}

/* Book Now CTA Button in Nav */
.nav-book-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: none !important;
    transition: background 0.3s !important;
    margin-left: auto;
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: #e67a1a !important;
}

/* Dropdown submenus in the nav bar */
.header-nav-bar .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    min-width: 280px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 0 0 6px 6px;
    z-index: 200;
    transform: translateY(8px);
    list-style: none;
}

.header-nav-bar .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-bar .sub-menu a {
    color: var(--text-color) !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    display: block !important;
    letter-spacing: 0 !important;
}

.header-nav-bar .sub-menu a:hover {
    background: #f5f5f5 !important;
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

/* ==========================================================================
   Mobile-First: Bottom App Navigation
   ========================================================================== */
.desktop-menu {
    display: none; /* Hide top nav on mobile */
}

.mobile-app-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    border-top: 1px solid #f0f0f0;
}

.mobile-app-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    height: 70px;
    align-items: center;
}

.mobile-app-navigation li {
    flex-basis: 100%;
}

.mobile-app-navigation a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666666;
    text-decoration: none;
    font-size: 0.70rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-app-navigation a::before {
    content: '\f2b9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: inherit;
}

.mobile-app-navigation li.home-icon a::before { content: '\f015'; }
.mobile-app-navigation li.tour-icon a::before { content: '\f3c5'; }
.mobile-app-navigation li.contact-icon a::before { content: '\f086'; }
.mobile-app-navigation li.about-icon a::before { content: '\f007'; }
.mobile-app-navigation li.hamburger-icon a::before { content: '\f0c9'; }

.mobile-app-navigation a:hover,
.mobile-app-navigation .current-menu-item > a {
    color: var(--primary-color);
}

.mobile-app-navigation .current-menu-item > a::after {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    margin-top: 2px;
}

/* ==========================================================================
   Desktop Overrides
   ========================================================================== */
@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
    .mobile-app-navigation {
        display: none;
    }
    /* Show the nav bar tiers */
    .header-nav-bar .desktop-menu {
        display: flex !important;
    }
}

/* ==========================================================================
   Hero Section & Video Background
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

/* Make header overlay for the home page hero */
.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    box-sizing: border-box;
}

.home .top-announcement-bar {
    background: rgba(248, 138, 39, 0.9);
    backdrop-filter: blur(8px);
}

.home .header-middle {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: none;
}

.home .header-nav-bar {
    background: rgba(26, 54, 54, 0.85);
    backdrop-filter: blur(10px);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* 100% of the viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    padding-top: 80px; /* Accounts for the transparent header */
}

/* Video Background (Iframe Trick) */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background-color: var(--dark-color); /* Fallback */
}

.video-background-container iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Video Overlay Fix */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle and soft difuminado overlay using brand color #1a3636 (RGB: 26, 54, 54) */
    background: linear-gradient(to bottom, rgba(26, 54, 54, 0.15) 0%, rgba(26, 54, 54, 0.45) 80%, rgba(26, 54, 54, 0.6) 100%);
    z-index: 2; /* Put OVER the iframe */
}

/* Hero Content */
.hero-content {
    z-index: 10;
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile specific overrides to exactly match design */
@media (max-width: 1023px) {
    .site-header {
        display: none !important; /* Completely hide header on mobile */
    }
    
    .hero-section {
        justify-content: center; /* Center vertically */
        padding-top: 0; /* Remove top offset */
    }

    .hero-title { 
        font-size: 2.2rem; 
        line-height: 1.2;
    }
    
    .hero-subtitle { 
        font-size: 0.95rem; 
        font-weight: 400;
        margin-top: 10px;
    }
    
    .hero-scroll-btn {
        bottom: 90px; /* Above the 70px app bar */
    }
    
    .video-overlay {
        background: linear-gradient(to bottom, rgba(26, 54, 54, 0.1) 0%, rgba(26, 54, 54, 0.4) 100%); /* Lighter fade on mobile but keeps brand color */
    }
}

/* Scroll Button Pill */
.hero-scroll-btn {
    position: absolute;
    bottom: 30px; 
    z-index: 10;
}

.scroll-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 25px 8px 8px 8px; /* Taller padding at the top for the pill look */
    text-decoration: none;
    color: #ffffff;
    width: 60px;
    transition: var(--transition);
}

.scroll-trigger:hover {
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.8) 100%);
}

.scroll-trigger i {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: bounceDown 2s infinite;
}

.scroll-trigger .go-text {
    background: var(--bg-color);
    color: var(--dark-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* ==========================================================================
   Explore Section: Search + Categories + Popular Tours
   ========================================================================== */
.explore-section {
    background: #f8f9fb;
    padding: 30px 20px 50px;
}

/* Search Bar */
.explore-search-wrapper {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.explore-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e0e4ea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.explore-search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(44, 159, 163, 0.12);
}

.explore-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-color);
    background: transparent;
}

.explore-search-bar input::placeholder {
    color: #b0b7c3;
}

.explore-search-bar button {
    background: none;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.explore-search-bar button:hover {
    color: var(--dark-color);
}

/* Category Icons */
.category-icons-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.category-icons-scroll::-webkit-scrollbar {
    display: none;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 72px;
    cursor: pointer;
    transition: transform 0.2s;
}

.category-icon-item:hover {
    transform: translateY(-3px);
}

.cat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s;
}

.category-icon-item.active .cat-icon-circle,
.category-icon-item:hover .cat-icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(44, 159, 163, 0.3);
}

.category-icon-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    white-space: nowrap;
}

.category-icon-item.active span {
    color: var(--primary-color);
}

/* Popular Travel Section */
.popular-travel-wrapper {
    max-width: 1200px;
    margin: 10px auto 0;
}

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

.popular-header h2 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark-color);
}

.explore-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.explore-link:hover {
    gap: 10px;
}

/* Travel Cards Grid */
.travel-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mobile: 2 columns */
    gap: 16px;
}

.travel-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

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

.travel-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.travel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

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

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.featured {
    background: var(--secondary-color);
}

.travel-card-info {
    padding: 12px;
}

.travel-card-info h3 {
    font-size: 0.9rem;
    margin: 0 0 6px 0;
    color: var(--dark-color);
    font-weight: 700;
}

.card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.card-rating {
    font-size: 0.75rem;
    color: #f5a623;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.card-reviews {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 3px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.price-tag {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.card-details-btn {
    background: var(--dark-color);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: background 0.3s;
}

.card-details-btn:hover {
    background: var(--primary-color);
}

/* Tablet: 3 columns */
@media (min-width: 600px) {
    .travel-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .category-icons-scroll {
        justify-content: center;
        gap: 20px;
    }
    .category-icon-item {
        min-width: 80px;
    }
    .cat-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
    }
    .category-icon-item span {
        font-size: 0.78rem;
    }
    .popular-header h2 {
        font-size: 1.6rem;
    }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
    .explore-section {
        padding: 50px 20px 70px;
    }
    .travel-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .category-icons-scroll {
        gap: 40px;
    }
    .category-icon-item {
        min-width: 90px;
    }
    .cat-icon-circle {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }
    .category-icon-item span {
        font-size: 0.82rem;
    }
    .popular-header h2 {
        font-size: 1.8rem;
    }
    .travel-card-info h3 {
        font-size: 1rem;
    }
    .explore-search-bar input {
        padding: 16px 22px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Top Destinations Slider Section
   ========================================================================== */
.top-destinations-section {
    padding: 60px 20px 70px;
    background: #fff;
}

.top-destinations-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.section-header-row h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--dark-color);
}

/* Navigation Arrows */
.swiper-nav-btns {
    display: flex;
    gap: 10px;
}

.swiper-btn-prev,
.swiper-btn-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e0e4ea;
    background: #fff;
    color: var(--dark-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Filter Tabs */
.destination-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.destination-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 8px 20px;
    border: 1.5px solid #e0e4ea;
    border-radius: 30px;
    background: #fff;
    color: var(--text-color);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}

/* Destination Card */
.dest-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dest-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.dest-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dest-card-body h3 {
    font-size: 1rem;
    color: var(--dark-color);
    margin: 0 0 6px;
    font-weight: 700;
}

.dest-desc {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.4;
    margin: 0 0 12px;
    flex: 1;
}

.dest-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
}

.dest-price {
    font-size: 0.85rem;
    color: var(--text-color);
}

.dest-price strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
}

.dest-days {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Swiper overrides for spacing */
.top-destinations-swiper {
    padding-bottom: 10px;
}

.top-destinations-swiper .swiper-slide {
    height: auto; /* Let cards define their own height */
}

/* Responsive Slider */
@media (max-width: 599px) {
    .section-header-row h2 {
        font-size: 1.4rem;
    }
    .top-destinations-section {
        padding: 40px 15px 50px;
    }
}

/* ==========================================================================
    Footer Styles (Travel Agency Premium Layout)
   ========================================================================== */
.site-footer {
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.footer-top-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.footer-top-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.footer-main {
    padding: 60px 20px 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-col .footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.brand-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

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

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

.secure-payments {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.secure-payments span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.language-selector {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.language-selector:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
        padding-bottom: 60px; /* Spacer for mobile bottom nav */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 80px; /* Bottom Nav space */
    }
}

/* ==========================================================================
   Tour Single Product Page (WooCommerce)
   ========================================================================== */
.tour-single-page {
    padding-bottom: 80px;
    background: #fff;
}

/* ---- Full-Width Hero Banner (Desktop) ---- */
.tour-hero-banner {
    display: none; /* Hidden on mobile, shown on desktop */
}

/* ---- Mobile Gallery Swiper ---- */
.tour-mobile-gallery {
    position: relative;
    width: 100%;
    background: var(--dark-color);
}

.tour-gallery-swiper {
    width: 100%;
}

.tour-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.tour-gallery-pagination {
    position: absolute;
    bottom: 14px !important;
    z-index: 10;
}

.tour-gallery-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.tour-gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Floating Nav Buttons */
.tour-hero-nav {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
}

.hero-nav-right {
    display: flex;
    gap: 10px;
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-nav-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.wishlist-btn.active i {
    font-weight: 900;
    color: #e74c3c;
}

/* Tour Body Section */
.tour-body-section {
    padding: 0 20px;
}

.tour-body-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile-only header (title, rating, location) */
.tour-mobile-header {
    display: block;
}

.tour-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 24px 0 8px;
    line-height: 1.2;
}

.tour-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tour-stars {
    display: flex;
    gap: 2px;
}

.tour-stars i {
    color: #f5a623;
    font-size: 0.85rem;
}

.tour-review-count {
    font-size: 0.85rem;
    color: #888;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.tour-location i {
    color: var(--primary-color);
}

/* Breadcrumbs */
.tour-breadcrumbs-hero {
    display: none; /* Desktop only via hero */
}

.bc-sep {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
}

.bc-current {
    color: rgba(255,255,255,0.7);
}

/* Quick Info Pills */
.tour-quick-info {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tour-quick-info::-webkit-scrollbar {
    display: none;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fa;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: max-content;
}

.info-pill i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-pill div {
    display: flex;
    flex-direction: column;
}

.pill-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.pill-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Acerca de este tour List */
.tour-about-section {
    margin-bottom: 24px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.tour-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: calc(50% - 10px);
}

.tour-about-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.about-list-text {
    display: flex;
    flex-direction: column;
}

.about-list-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.about-list-content {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Itinerary Accordion */
.itinerary-accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
    background: #fdfdfd;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: -8px;
}

.itinerary-accordion-header:hover {
    background: #f7f7f7;
}

.itinerary-accordion-header i {
    font-size: 0.85rem;
    color: #aaa;
    transition: transform 0.3s ease;
}

.itinerary-day.active .itinerary-accordion-header i {
    transform: rotate(180deg);
}

.itinerary-accordion-content {
    display: none;
    padding-top: 15px;
    padding-bottom: 5px;
    padding-left: 5px;
}

.itinerary-day.active .itinerary-accordion-content {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inclusions UI */
.inclusions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 15px;
}

.tour-includes-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #efefef;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.inclusions-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.inclusions-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.inclusions-header.includes {
    background: #f2fcf5;
    border-bottom: 1px solid #e1f5e8;
}
.inclusions-header.includes i, .inclusions-header.includes h3 {
    color: #10a350;
}

.inclusions-header.excludes {
    background: #fff5f5;
    border-bottom: 1px solid #ffe8e8;
}
.inclusions-header.excludes i, .inclusions-header.excludes h3 {
    color: #e53e3e;
}

.inclusions-body {
    padding: 20px;
}

.inclusions-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.inclusions-body ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
}

.includes-content ul li::before {
    content: "\f00c"; /* check icon */
    color: #10a350;
}

.excludes-content ul li::before {
    content: "\f00d"; /* xmark icon */
    color: #e53e3e;
}

@media (max-width: 768px) {
    .tour-about-list li {
        width: 100%;
    }
    .inclusions-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Tabs Navigation */
.tour-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
}

.tour-tab {
    padding: 12px 20px;
    border: none;
    background: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: #aaa;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-family: var(--font-body);
    white-space: nowrap;
}

.tour-tab.active {
    color: var(--primary-color);
}

.tour-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

.tour-tab:hover {
    color: var(--dark-color);
}

/* Tab Content */
.tour-tab-content {
    display: none;
}

.tour-tab-content.active {
    display: block;
}

/* Description Typography */
.tour-description,
.tour-full-description {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #3f4751;
    margin-bottom: 20px;
}

.tour-description strong,
.tour-full-description strong {
    font-weight: 600;
    color: var(--dark-color);
}

.tour-description a,
.tour-full-description a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 600;
    transition: color 0.3s, text-decoration-thickness 0.3s;
}

.tour-description a:hover,
.tour-full-description a:hover {
    color: var(--secondary-color);
    text-decoration-thickness: 2px;
}

.tour-full-description.collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.tour-full-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #fff);
}

.tour-full-description.expanded {
    max-height: none;
}

.tour-full-description.expanded::after {
    display: none;
}

.see-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    transition: gap 0.3s;
}

.see-more-btn:hover { gap: 10px; }

.see-more-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Gallery Thumbnails */
.tour-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tour-gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
    min-width: 100px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-thumb:hover img { transform: scale(1.08); }

.gallery-thumb {
    position: relative;
    cursor: pointer;
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    transition: background 0.3s;
}

.gallery-thumb:hover .gallery-more-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Included / Excluded Lists */
.tour-tab-content h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 20px 0 12px;
}

.included-list,
.excluded-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.included-list li,
.excluded-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    color: #555;
}

.included-list li i { color: #27ae60; font-size: 0.85rem; width: 20px; text-align: center; }
.excluded-list li i { color: #e74c3c; font-size: 0.85rem; width: 20px; text-align: center; }

/* Cost Summary Card */
.cost-summary-card {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 20px;
    margin-top: 10px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.cost-row:last-child { border-bottom: none; }

.cost-row.total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-color);
    border-top: 2px solid #ddd;
    border-bottom: none;
    margin-top: 4px;
    padding-top: 16px;
}

.cost-val { font-weight: 700; color: var(--dark-color); }
.cost-row.total .cost-val { color: var(--primary-color); font-size: 1.15rem; }

.no-reviews {
    text-align: center;
    color: #aaa;
    padding: 40px 0;
    font-size: 0.95rem;
}

/* Sidebar — hidden on mobile */
.tour-sidebar {
    display: none;
}

/* Sticky Booking Bar — mobile */
.tour-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-bar-price {
    font-size: 0.85rem;
    color: #888;
}

.booking-bar-price strong,
.booking-bar-price .woocommerce-Price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.per-person { font-size: 0.78rem; color: #bbb; }

.booking-bar-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(44, 159, 163, 0.35);
}

.booking-bar-btn:hover {
    background: var(--dark-color);
    box-shadow: 0 6px 20px rgba(26, 54, 54, 0.3);
}

/* ==========================================================================
   Tour Single — DESKTOP LAYOUT
   ========================================================================== */
@media (min-width: 1024px) {
    .tour-single-page {
        padding-bottom: 0; /* No mobile bar space */
    }

    /* Show full-width Hero Banner on desktop */
    .tour-hero-banner {
        display: flex;
        align-items: flex-end;
        width: 100%;
        min-height: 65vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .tour-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(26,54,54,0.85) 0%, rgba(26,54,54,0.3) 50%, rgba(26,54,54,0.1) 100%);
        z-index: 1;
    }

    .desktop-hero-nav {
        position: absolute;
        top: 24px;
        left: 40px;
        right: 40px;
        z-index: 20;
        display: flex;
        justify-content: flex-end;
    }

    .tour-hero-banner .hero-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    /* Hero Content on banner */
    .tour-hero-content {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 0 40px 50px;
    }

    .tour-breadcrumbs-hero {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .tour-breadcrumbs-hero a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s;
    }

    .tour-breadcrumbs-hero a:hover {
        color: #fff;
    }

    .tour-hero-title {
        font-size: 3rem;
        color: #fff;
        margin: 0 0 16px;
        line-height: 1.15;
        text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        max-width: 700px;
    }

    .tour-hero-meta {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .hero-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.9);
        font-size: 0.92rem;
    }

    .hero-meta-item i {
        color: var(--secondary-color);
    }

    .tour-stars-hero {
        display: flex;
        gap: 2px;
    }

    .tour-stars-hero i {
        color: #f5a623;
        font-size: 0.82rem;
    }

    /* Gallery mini-strip on hero */
    .hero-gallery-strip {
        position: absolute;
        bottom: 30px;
        right: 40px;
        z-index: 10;
        display: flex;
        gap: 8px;
    }

    .hero-thumb {
        width: 80px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,0.3);
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
    }

    .hero-thumb.active {
        border-color: #fff;
        box-shadow: 0 0 0 2px var(--primary-color);
    }

    .hero-thumb:hover {
        border-color: #fff;
        transform: scale(1.05);
    }

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

    .thumb-more-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 700;
    }

    /* Hide mobile gallery on desktop */
    .tour-mobile-gallery {
        display: none !important;
    }

    /* Hide mobile-only elements */
    .tour-mobile-header {
        display: none !important;
    }

    .tour-booking-bar {
        display: none !important; /* Sidebar replaces it */
    }

    /* Two-column layout */
    .tour-body-section {
        padding: 40px 20px 80px;
    }

    .tour-body-container {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tour-main-col {
        min-width: 0; /* Prevent overflow */
    }

    .tour-title {
        font-size: 2rem;
        margin-top: 0;
    }

    .tour-quick-info {
        gap: 16px;
    }

    .info-pill {
        padding: 16px 24px;
    }

    .gallery-thumb {
        min-width: 140px;
        height: 100px;
    }

    /* Sidebar — visible on desktop */
    .tour-sidebar {
        display: block;
    }

    .booking-card {
        position: sticky;
        top: 130px; /* Below header */
        background: #fff;
        border: 1px solid #eee;
        border-radius: 20px;
        box-shadow: 0 8px 40px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .booking-card-header {
        background: var(--dark-color);
        padding: 24px;
        color: #fff;
    }

    .booking-from {
        font-size: 0.82rem;
        opacity: 0.7;
        display: block;
        margin-bottom: 4px;
    }

    .booking-price-big {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
    }

    .booking-price-big strong,
    .booking-price-big .woocommerce-Price-amount {
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        font-family: var(--font-heading);
    }

    .booking-per {
        font-size: 0.82rem;
        opacity: 0.6;
    }

    .booking-card-info {
        padding: 20px 24px;
    }

    .booking-info-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.88rem;
        color: #666;
    }

    .booking-info-row:last-child {
        border-bottom: none;
    }

    .booking-info-row i {
        color: var(--primary-color);
        font-size: 1rem;
        width: 22px;
        text-align: center;
    }

    .booking-info-row strong {
        color: var(--dark-color);
    }

    .booking-card-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--primary-color);
        color: #fff;
        padding: 16px 24px;
        margin: 0 24px 16px;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 4px 16px rgba(44, 159, 163, 0.3);
    }

    .booking-card-btn:hover {
        background: var(--dark-color);
        box-shadow: 0 6px 20px rgba(26, 54, 54, 0.3);
    }

    .booking-card-footer {
        padding: 16px 24px 24px;
        border-top: 1px solid #f0f0f0;
    }

    .booking-guarantee {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        color: #888;
        margin-bottom: 8px;
    }

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

    .booking-guarantee i {
        color: #27ae60;
        font-size: 0.9rem;
    }

    /* Hide back arrow on desktop */
    .back-btn-mobile {
        display: none !important;
    }

    /* ---- Booking Form Sections ---- */
    .booking-form-section {
        padding: 16px 24px;
        border-bottom: 1px solid #f0f0f0;
    }

    .booking-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .booking-label i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    /* Date Input Custom Design */
    .booking-date-wrapper {
        position: relative;
    }

    .booking-date-wrapper .date-icon-right {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--dark-color);
        pointer-events: none;
        font-size: 1rem;
    }

    .booking-date-input {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid #e0e4ea;
        border-radius: 8px;
        font-size: 0.95rem;
        font-family: var(--font-body);
        color: var(--dark-color);
        background: #fff;
        cursor: pointer;
        transition: border-color 0.2s;
        appearance: none;
        -webkit-appearance: none;
        box-sizing: border-box;
    }

    /* Hide native icon completely */
    .booking-date-input::-webkit-calendar-picker-indicator {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        cursor: pointer;
    }

    .booking-date-input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(44,159,163,0.1);
    }

    /* Travelers Counter */
    .travelers-counters {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .traveler-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .traveler-row:first-child {
        border-bottom: 1px solid #f5f5f5;
    }

    .traveler-info {
        display: flex;
        flex-direction: column;
    }

    .traveler-type {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--dark-color);
    }

    .traveler-age {
        font-size: 0.75rem;
        color: #999;
    }

    .counter-controls {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .counter-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid #ddd;
        background: #fff;
        color: var(--dark-color);
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        line-height: 1;
    }

    .counter-btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .counter-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .counter-btn:disabled:hover {
        border-color: #ddd;
        color: var(--dark-color);
    }

    .counter-value {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark-color);
        min-width: 24px;
        text-align: center;
    }
}

/* ==========================================================================
   Airbnb‑Style Share Modal
   ========================================================================== */
.share-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.share-modal-overlay.active {
    display: flex;
}

.share-modal {
    background: #fff;
    border-radius: 20px;
    width: 92%;
    max-width: 480px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
    overflow: hidden;
    position: relative;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.share-modal-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--dark-color);
}

.share-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.share-modal-close:hover {
    background: #e8e8e8;
}

/* Tour preview inside modal */
.share-modal-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.share-modal-preview img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
}

.share-modal-preview strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.share-modal-preview span {
    font-size: 0.78rem;
    color: #888;
}

/* Share Options Grid */
.share-modal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 8px 0;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: none;
    border: none;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-body);
}

.share-option:hover {
    background: #f8f8f8;
}

.share-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #f0f0f0;
    color: var(--dark-color);
    flex-shrink: 0;
}

.share-icon.whatsapp { background: #25d366; color: #fff; }
.share-icon.facebook { background: #1877f2; color: #fff; }
.share-icon.twitter { background: #000; color: #fff; }
.share-icon.email { background: var(--primary-color); color: #fff; }

/* Copied Toast inside modal */
.share-copied-toast {
    display: none;
    text-align: center;
    padding: 12px;
    background: #27ae60;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.share-copied-toast.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ==========================================================================
   Wishlist Saved Toast
   ========================================================================== */
.wishlist-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.wishlist-toast i {
    color: #e74c3c;
}

.wishlist-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
