/* =====================================================
   PREMIUM TOUR DETAIL - GetYourGuide Level
   JSON-First, Business Config Integration, Desktop Focus
   ===================================================== */

/* ARCHITECTURE: Skeleton Loading */
.tour-skeleton {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 600px;
}

/* HERO GALLERY SECTION - DESIGN */
.hero-gallery-section {
    margin-bottom: 40px;
    padding: 20px;
}

.hero-gallery-container {
    position: relative;
    max-width: 1000px; /* Optimized for 800x600 ratio */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    aspect-ratio: 4/3; /* Perfect 4:3 ratio for 800x600 images */
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%; /* Use full container height for proper 4:3 ratio */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-main-image:hover .hero-image {
    transform: scale(1.03);
}

/* HERO OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.hero-overlay-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-overlay-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 10; /* Ensure price/rating blocks stay on top */
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.trust-badge.bestseller {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge.featured {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge.free-cancel {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge.verified {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* PRICE BLOCK */
.price-block {
    background: rgba(255,255,255,0.95);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px var(--shadow-black-15);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 160px;
}

.price-current {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color, #2c3e50);
    line-height: 1;
    margin-bottom: 4px;
}

.price-original {
    font-size: 18px;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 4px;
    display: none;
}

.price-per {
    font-size: 12px;
    color: var(--text-light, #7f8c8d);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RATING BLOCK */
.rating-block {
    background: rgba(0,0,0,0.7);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    color: white;
    min-width: 120px;
}

.rating-stars {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.rating-count {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* GALLERY NAVIGATION */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.gallery-nav i {
    font-size: 18px;
    color: var(--primary-color, #2c3e50);
}

/* GALLERY EXPAND BUTTON */
.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-expand:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* GALLERY THUMBNAILS */
.gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 32px;
    right: 300px; /* More space to avoid overlap with price/rating blocks */
    display: flex;
    gap: 12px;
    z-index: 5; /* Lower z-index than overlay content */
}

.gallery-thumb {
    width: 80px;
    height: 60px; /* 4:3 ratio to match 800x600 images */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex-shrink: 0; /* Prevent thumbnails from shrinking */
}

.gallery-thumb.active {
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* MORE PHOTOS THUMB */
.gallery-thumb.more-photos {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-photos-overlay {
    text-align: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.more-photos-overlay i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

/* RESPONSIVE: Basic tablet adjustments */
@media (max-width: 768px) {
    .hero-gallery-container {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .gallery-thumbnails {
        right: 150px; /* Less space needed on smaller screens */
        gap: 8px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
    
    .price-block {
        padding: 16px 20px;
        min-width: 140px;
    }
    
    .price-current {
        font-size: 28px;
    }
}

/* TOUR INFO SECTION */
.tour-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.tour-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.tour-subtitle {
    font-size: 18px;
    color: var(--text-light, #7f8c8d);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* QUICK FACTS */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.quick-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--shadow-black-05);
    transition: all 0.3s ease;
}

.quick-fact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.quick-fact i {
    font-size: 20px;
    color: var(--primary-color, #2c3e50);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fact-content {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 13px;
    color: var(--text-light, #7f8c8d);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fact-value {
    font-size: 16px;
    color: var(--text-color, #2c3e50);
    font-weight: 600;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color, #2c3e50);
    line-height: 1;
}

.cta-per {
    font-size: 12px;
    color: var(--text-light, #7f8c8d);
    margin-top: 2px;
}

.cta-reserve {
    background: linear-gradient(135deg, var(--primary-color, #5964FF) 0%, var(--secondary-color, #8B5CF6) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-alpha-30, rgba(89, 100, 255, 0.3));
}

.cta-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-alpha-40, rgba(89, 100, 255, 0.4));
}

/* RESERVATION SHEET */
.reservation-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
}

.sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.sheet-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sheet-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sheet-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
}

.sheet-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #95a5a6;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.sheet-close:hover {
    color: var(--text-color, #2c3e50);
}

.sheet-body {
    padding: 24px;
}

/* FORM STYLING */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color, #2c3e50);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #2c3e50);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.whatsapp-submit {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

:root {
    /* Premium theme colors - Will be overridden by Universal Theme Manager */
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #95a5a6;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --text-color: #2c3e50;
    --text-light: #5d6d7e;
    --border-color: #e1e8ed;
    --background-color: #fdfefe;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* =====================================================
   PREMIUM HERO GALLERY - GetYourGuide Level
   ===================================================== */

.tour-hero-gallery {
    position: relative;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-gallery-container {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

/* Main Hero Image */
.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-image:hover .hero-image {
    transform: scale(1.05);
}

/* Hero Overlay with Price & Badges */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.1) 60%,
        rgba(0,0,0,0.5) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.hero-overlay-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* Premium Price Badge */
.hero-price-badge {
    align-self: flex-end;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-price-badge .price-current {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.hero-price-badge .price-per {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
}

/* Trust Badges */
.hero-badges-overlay {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.trust-badge.bestseller {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #8b4513;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge.free-cancel {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-black-15);
}

/* Gallery Thumbnails */
.hero-gallery-thumbs {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 120px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb.active {
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gallery-thumb.more-photos {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-photos-overlay {
    text-align: center;
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.more-photos-overlay i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-black-15);
}

.gallery-nav i {
    font-size: 16px;
    color: var(--primary-color);
}

/* Gallery Fullscreen Button */
.gallery-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 24px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-fullscreen:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-gallery-container {
        height: 300px;
    }
    
    .hero-overlay {
        padding: 16px;
    }
    
    .hero-price-badge .price-current {
        font-size: 24px;
    }
    
    .hero-badges-overlay {
        gap: 8px;
    }
    
    .trust-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-gallery-thumbs {
        bottom: 16px;
        left: 16px;
        right: 100px;
    }
    
    .gallery-thumb {
        width: 50px;
        height: 50px;
    }
    
    .gallery-fullscreen {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
}

/* PRELOADER */
#tourDetailPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--text-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

#tourDetailPreloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: preloaderFloat 2s ease-in-out infinite;
}

.preloader-icon i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.preloader-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.preloader-text p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* NAVBAR - Match turlar.html structure */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--primary-color);
}

.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.navbar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar-cart {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-cart:hover {
    background: rgba(0,0,0,0.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.navbar-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Body padding for fixed navbar */
body {
    padding-top: 80px;
}

/* Breadcrumb - positioned below navbar */
.breadcrumb {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
}

.tour-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-icon {
    font-size: 24px;
}

.tour-title-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Tour Details */
.tour-details {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}

/* Title Section - Simple */
.tour-title-section {
    padding: 1.5rem 0 1rem 0;
    margin-bottom: 1rem;
}

.tour-title-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.tour-title-section .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.4;
}

/* Hero Image Section - Close to title */
.tour-hero-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.tour-hero-image .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    border-radius: inherit;
}

.tour-hero-image .hero-image[src=""] {
    display: none;
}


.tour-hero-image .gallery-trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-hero-image .gallery-trigger:hover {
    background: rgba(0,0,0,0.95);
    transform: translateY(-2px);
}

/* Meta Section - After Hero Image */
.tour-meta-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tour-meta-section .meta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.tour-meta-section .hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-meta-section .hero-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-meta-section .hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-meta-section .stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.tour-meta-section .rating-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Removed duplicate hero-content section styles */

/* Responsive */
@media (max-width: 768px) {
    .tour-hero-image {
        height: 250px;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .tour-hero-content .hero-title {
        font-size: 2rem;
    }
    
    .tour-hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tour-title-section .hero-title {
        font-size: 2rem;
    }
    
    .tour-title-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .tour-meta-section .meta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .tour-hero-image .gallery-trigger {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .tour-title-section {
        padding: 1.5rem 0 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .tour-title-section .hero-title {
        font-size: 2rem;
    }
    
    .tour-title-section .hero-subtitle {
        font-size: 1.1rem;
    }
}

.tour-hero-icon {
    font-size: 120px;
    opacity: 0.8;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(0,0,0,0.9);
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tour-meta-item i {
    color: var(--primary-color);
}

.tour-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.tour-highlights {
    margin-bottom: 30px;
}

.highlights-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.highlights-list li::before {
    content: '✓';
    background: var(--success-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    text-align: center;
}

.price-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 10px;
}

.price-currency {
    font-size: 18px;
    color: #666;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--secondary-color);
}

.quantity-display {
    background: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 20px;
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.total-price {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

.total-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.add-to-cart-btn {
    width: 100%;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.add-to-cart-btn:hover {
    background: #388e3c;
    transform: translateY(-2px);
}

.whatsapp-btn {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    color: #666;
}

.info-list li i {
    color: var(--primary-color);
    width: 16px;
}

/* Photo Gallery Modal - LIGHTBOX */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Click outside to close */
}

.gallery-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    cursor: default;
}

.gallery-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.gallery-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: white;
    transform: scale(1.1);
}

/* Gallery Counter */
.gallery-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10001;
}

/* Gallery modal navigation - these override hero nav when inside modal */
.gallery-modal .gallery-nav,
.gallery-modal .gallery-close {
    pointer-events: auto !important; /* CRITICAL: Ensure clickable */
}

.gallery-modal .gallery-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.gallery-modal .gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal .gallery-prev {
    left: 20px;
}

.gallery-modal .gallery-next {
    right: 20px;
}

.gallery-thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-thumb {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.gallery-thumb.active {
    opacity: 1;
    border: 2px solid white;
}

/* Mobile responsive for navbar */
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .navbar-actions {
        gap: 10px;
    }
    
    .navbar-cta {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-hero {
        height: 250px;
    }
    
    .tour-hero-icon {
        font-size: 80px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-meta {
        gap: 15px;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   NEW DETAILED TOUR SECTIONS - GetYourGuide Level
   ===================================================== */

/* Common Section Styles */
.tour-section {
    background: white;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tour-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.tour-section .container {
    padding: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.section-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Tour Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--surface-light, #f8f9fa);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-light, #e3f2fd);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.15);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

/* Tour Description Section */
.description-content {
    max-width: 800px;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
}

/* Tour Itinerary Section */
.itinerary-timeline {
    position: relative;
    max-width: 800px;
}

.itinerary-step {
    display: grid;
    grid-template-columns: 60px 120px 1fr;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.itinerary-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    position: relative;
    z-index: 2;
}

.step-time {
    background: var(--warning-light, #fef3cd);
    color: var(--warning-color, #d97706);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    height: fit-content;
    border: 1px solid var(--warning-color, #d97706);
    white-space: nowrap;
}

.step-content {
    padding: 5px 0;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Inclusions Section */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.included-section,
.excluded-section {
    background: var(--surface-light, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.included-section {
    border-left: 4px solid var(--success-color, #22c55e);
}

.excluded-section {
    border-left: 4px solid var(--error-color, #ef4444);
}

.included-list,
.excluded-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-item,
.exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.inclusion-item:last-child,
.exclusion-item:last-child {
    border-bottom: none;
}

.inclusion-icon {
    color: var(--success-color, #22c55e);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.exclusion-icon {
    color: var(--error-color, #ef4444);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.inclusion-text,
.exclusion-text {
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
}

/* Important Information Section */
.important-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 900px;
}

.important-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--warning-light, #fef3cd);
    border: 1px solid var(--warning-color, #d97706);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.important-info-item:hover {
    background: var(--warning-color, #d97706);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.important-info-item:hover .info-icon {
    color: white;
}

.info-icon {
    color: var(--warning-color, #d97706);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.info-text {
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Cancellation Policy Section */
.cancellation-content {
    max-width: 600px;
    background: var(--surface-light, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.policy-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-type.flexible {
    background: var(--success-light, #dcfce7);
    color: var(--success-color, #22c55e);
    border: 1px solid var(--success-color, #22c55e);
}

.policy-type.moderate {
    background: var(--warning-light, #fef3cd);
    color: var(--warning-color, #d97706);
    border: 1px solid var(--warning-color, #d97706);
}

.policy-type.strict {
    background: var(--error-light, #fecaca);
    color: var(--error-color, #ef4444);
    border: 1px solid var(--error-color, #ef4444);
}

.policy-label {
    font-size: 1rem;
}

.policy-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design for Detailed Sections */
@media (max-width: 992px) {
    .tour-section .container {
        padding: 30px;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .itinerary-step {
        grid-template-columns: 50px 100px 1fr;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .important-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tour-section .container {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-item {
        padding: 15px;
    }

    .itinerary-step {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
        text-align: center;
    }

    .itinerary-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
        position: relative;
    }

    .step-time {
        margin: 0 auto 15px;
        width: fit-content;
    }

    .step-content {
        text-align: left;
    }

    .important-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px;
    }

    .cancellation-content {
        padding: 25px 20px;
    }

    .policy-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tour-section .container {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
    }

    .highlight-item {
        padding: 12px;
        gap: 12px;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .included-section,
    .excluded-section {
        padding: 20px 15px;
    }

    .inclusion-item,
    .exclusion-item {
        padding: 10px 0;
    }

    .inclusion-text,
    .exclusion-text {
        font-size: 0.95rem;
    }

    .info-text {
        font-size: 0.95rem;
    }

    .policy-description {
        font-size: 1rem;
    }
}

/* =====================================================
   HERO LAYOUT SPEC v1.0 - CLEAN LAYER SYSTEM
   5 Layers: L0 Visual, L1 Badges, L2 Action, L3 Price, L4 Thumbs
   No overlap, clear hierarchy, professional spacing
   ===================================================== */

/* L0: VISUAL LAYER - Clean image + navigation arrows */
.hero-gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in; /* LIGHTBOX FIX: Tıklanabilir olduğunu göster */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none; /* Click hero-main-image üzerinden geçsin */
}

/* L0: Clean overlay - minimal gradient for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0) 70%,
        rgba(0,0,0,0.4) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* L0: Navigation arrows - centered vertically */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    pointer-events: auto;
}

.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-nav i {
    font-size: 16px;
    color: var(--primary-color, #2c3e50);
}

/* L1: BADGE BAR - Top left, max 3 badges + overflow */
.hero-overlay-top {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    z-index: 15;
    pointer-events: auto;
}

.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: calc(100% - 160px); /* Leave space for View All Photos */
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* Badge variants */
.trust-badge.bestseller {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
}

.trust-badge.featured {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    color: white;
}

.trust-badge.free-cancel {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.trust-badge.verified {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
}

/* +N overflow badge */
.trust-badge.overflow {
    background: rgba(0,0,0,0.7);
    color: white;
    min-width: 32px;
    justify-content: center;
}

/* L2: VIEW ALL PHOTOS - Top right, single action button */
.gallery-expand {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    background: rgba(0,0,0,0.75);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 15;
    pointer-events: auto;
}

.gallery-expand:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.gallery-expand i {
    font-size: 14px;
}

/* L3: PRICE PANEL - Bottom right, semi-opaque, separate from thumbnails */
.hero-overlay-bottom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    left: auto;
    top: auto;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: auto;
}

.price-block {
    background: rgba(255,255,255,0.95);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 140px;
}

.price-current {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color, #2c3e50);
    line-height: 1;
    margin-bottom: 2px;
}

.price-original {
    font-size: 14px;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-original:empty { display: none; }

.price-per {
    font-size: 11px;
    color: var(--text-light, #7f8c8d);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Rating block - smaller, below price */
.rating-block {
    background: rgba(0,0,0,0.75);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    font-size: 14px;
    color: #FFD700;
}

.rating-count {
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* L4: THUMBNAILS STRIP - Bottom left/center, clear space */
.gallery-thumbnails {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 180px; /* Clear space for price panel */
    display: flex;
    gap: 8px;
    z-index: 10;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    pointer-events: auto;
}

.gallery-thumbnails::-webkit-scrollbar { display: none; }

.gallery-thumb {
    width: 64px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 4px 15px rgba(0,0,0,0.25);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* More photos thumbnail */
.gallery-thumb.more-photos {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-photos-overlay {
    text-align: center;
    color: white;
    font-size: 9px;
    font-weight: 600;
}

.more-photos-overlay i {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

/* =====================================================
   HERO LAYOUT SPEC v1.0 - MOBILE RULES
   Simplified layout for smaller screens
   ===================================================== */

@media (max-width: 768px) {
    .hero-gallery-container {
        border-radius: 0;
        max-width: 100%;
        aspect-ratio: 16/10;
    }

    /* L1: Badges - smaller, max 2 visible */
    .hero-overlay-top {
        top: 12px;
        left: 12px;
    }

    .trust-badges {
        max-width: calc(100% - 120px);
    }

    .trust-badge {
        padding: 5px 10px;
        font-size: 10px;
    }

    /* Hide 3rd+ badges on mobile */
    .trust-badge:nth-child(n+3) {
        display: none;
    }

    .trust-badge.overflow {
        display: inline-flex;
    }

    /* L2: View All Photos - smaller */
    .gallery-expand {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .gallery-expand span {
        display: none; /* Icon only on mobile */
    }

    .gallery-expand i {
        font-size: 16px;
    }

    /* L3: Price panel - bottom right, compact */
    .hero-overlay-bottom {
        bottom: 12px;
        right: 12px;
    }

    .price-block {
        padding: 12px 16px;
        min-width: 110px;
    }

    .price-current {
        font-size: 22px;
    }

    .rating-block {
        padding: 6px 10px;
    }

    /* L4: Thumbnails - hidden on mobile */
    .gallery-thumbnails {
        display: none;
    }

    /* L0: Navigation arrows - smaller */
    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav.prev { left: 12px; }
    .gallery-nav.next { right: 12px; }

    .gallery-nav i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-gallery-container {
        aspect-ratio: 4/3;
    }

    .hero-overlay-top {
        top: 10px;
        left: 10px;
    }

    .trust-badge {
        padding: 4px 8px;
        font-size: 9px;
    }

    /* Show only 1 badge + overflow on very small screens */
    .trust-badge:nth-child(n+2):not(.overflow) {
        display: none;
    }

    .gallery-expand {
        top: 10px;
        right: 10px;
        padding: 8px 10px;
    }

    .hero-overlay-bottom {
        bottom: 10px;
        right: 10px;
    }

    .price-block {
        padding: 10px 14px;
        min-width: 100px;
    }

    .price-current {
        font-size: 20px;
    }

    .price-per {
        font-size: 10px;
    }

    .rating-block {
        display: none; /* Hide rating on very small screens */
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-nav.prev { left: 8px; }
    .gallery-nav.next { right: 8px; }
}

/* =====================================================
   PAYMENT & BOOKING POLICY SECTION
   Implementation - 2026-01-23
   ===================================================== */

.payment-policy-section {
    background: var(--surface-alt, #f8fafc);
    padding: 40px 0;
    margin: 20px 0;
}

.payment-policy-section .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--text-primary, #1e293b);
    margin-bottom: 24px;
}

.payment-policy-section .section-icon {
    color: var(--primary, #2563eb);
}

#tourPaymentPolicy {
    background: var(--surface, #ffffff);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payment-policy-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-info {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
}

.payment-info strong {
    color: var(--text-primary, #1e293b);
}

.booking-methods {
    border-top: 1px solid var(--border, #e2e8f0);
    padding-top: 16px;
}

.booking-methods > small {
    display: block;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.method-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.booking-method-badge:hover {
    transform: translateY(-2px);
}

.booking-method-badge.reserve {
    background: var(--success-bg, #ecfdf5);
    color: var(--success, #059669);
    border: 1px solid var(--success-border, #a7f3d0);
}

.booking-method-badge.pay {
    background: var(--primary-bg, #eff6ff);
    color: var(--primary, #2563eb);
    border: 1px solid var(--primary-border, #bfdbfe);
}

.booking-method-badge i {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-policy-section {
        padding: 24px 0;
    }

    #tourPaymentPolicy {
        padding: 16px;
    }

    .method-badges {
        flex-direction: column;
    }

    .booking-method-badge {
        width: 100%;
        justify-content: center;
    }
}