/* Tour Detail Page Styles */

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a96e;
    --secondary-color: #8b7355;
    --text-dark: #2d2926;
    --text-medium: #5a5550;
    --text-light: #f8f6f3;
    --luxury-gold: #d4af37;
    --page-max-width: 1200px;
    --page-padding: 20px;
    --page-padding-mobile: 15px;
}

/* Sticky Navigation Tabs */
.tour-navigation {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tour-navigation.sticky {
    top: 0;
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.tour-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.tour-nav-left {
    display: flex;
    align-items: center;
}

.back-to-top {
    background: none;
    border: none;
    color: #8b7355;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.back-to-top:hover {
    color: #c9a96e;
}

.back-to-top i {
    font-size: 0.9rem;
}

.tour-tabs {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tour-tab {
    color: #5a5550;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width 0.3s ease;
}

.tour-tab:hover {
    color: #c9a96e;
}

.tour-tab.active {
    color: #c9a96e;
    font-weight: 600;
}

.tour-tab.active::after {
    width: 100%;
}

/* Maintain luxury brand fonts - Cormorant Garamond for elegance */
.tour-detail-container h1,
.tour-detail-container h2,
.tour-detail-container h3,
.tour-detail-container h4,
.tour-detail-container h5,
.tour-detail-container h6,
.tour-hero h1,
.tour-section h2,
.day-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
}

.tour-detail-container p,
.tour-detail-container li,
.tour-detail-container span,
.tour-detail-container div,
.tour-description,
.tour-highlights,
.day-description {
    font-family: 'Inter', sans-serif !important;
}

.tour-tab,
.accommodation-tab,
.sub-tab {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
}

/* Header inherits from main style.css */

/* Tour Hero Section */
.tour-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 41, 38, 0.7) 0%, rgba(201, 169, 110, 0.3) 100%);
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 24px;
}

.tour-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tour Navigation Section */
.tour-nav-section {
    background: white !important;
    border-bottom: 1px solid #e5e5e5 !important;
    position: sticky !important;
    top: 80px !important;
    z-index: 100 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
}

.tour-nav-container {
    max-width: var(--page-max-width) !important;
    margin: 0 auto !important;
    padding: 0 20px 0 24px !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 20px !important;
    height: 60px !important;
}

.tour-tabs {
    display: flex !important;
    gap: 0 !important;
    justify-content: center !important;
    margin: 0 !important;
    list-style: none !important;
}

.back-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-transform: uppercase;
    margin-left: 0;
    justify-self: start;
}

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

.back-link i {
    font-size: 0.7rem;
}

.tour-tab {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #666 !important;
    text-decoration: none !important;
    padding: 20px 40px !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    position: relative !important;
    display: block !important;
}

.tour-tab:hover {
    color: #333;
}

.tour-tab.active {
    color: #333;
    border-bottom-color: #c9a96e;
    font-weight: 600;
}

.btn-book-header {
    background: #c9a96e;
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-right: 0;
    justify-self: end;
}

.btn-book-header:hover {
    background: #b8986a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

/* Breadcrumb */
.breadcrumb-container {
    max-width: var(--page-max-width) !important;
    margin: 0 auto !important;
    padding: 5px 20px 20px 24px !important;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: #ccc;
}

/* Tour Detail Container */
.tour-detail-container {
    max-width: var(--page-max-width) !important;
    margin: 20px auto !important;
    padding: 0 20px 0 24px !important;
}

/* Main Content */
.tour-main-content {
    min-width: 0;
}

.tour-section {
    padding: 30px 0;
    margin-bottom: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.tour-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 0;
}

.tour-section h2::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--primary-color);
    margin-left: 20px;
}

.tour-section h2.no-line::after {
    display: none;
}

.tour-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 30px 0 20px 0;
}

.tour-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Tour Highlights */
.tour-highlights ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tour-highlights li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f6f3;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-highlights li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-highlights li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Map Section */
#map {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.city-label {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #c9a96e !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #2d2926 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    z-index: 400 !important;
}

/* Hide Leaflet attribution */
.leaflet-control-attribution {
    display: none !important;
}

/* Contain map controls within map container */
#tourMap {
    position: relative !important;
    overflow: hidden !important;
}

.leaflet-container {
    position: relative !important;
    z-index: 1 !important;
}

/* Fix zoom controls to stay within map and above labels */
.leaflet-control-container {
    position: absolute !important;
    z-index: 800 !important;
}

.leaflet-control-container .leaflet-top {
    z-index: 800 !important;
    position: absolute !important;
    top: 10px !important;
}

.leaflet-control-zoom {
    z-index: 801 !important;
    position: relative !important;
}

/* Ensure tooltips stay below controls */
.leaflet-tooltip {
    z-index: 400 !important;
}

.leaflet-pane.leaflet-tooltip-pane {
    z-index: 400 !important;
}

.map-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Itinerary - Clean Minimal Design */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.day-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #c0c0c0;
    padding: 30px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-item:first-child {
    padding-top: 0;
}

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

.day-item.expanded {
    background: transparent;
}

.day-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    gap: 30px;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
}


.day-image-gallery {
    position: relative;
    width: 220px;
    height: 150px;
    overflow: hidden;
}

.day-image-thumb {
    width: 220px;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: white;
    opacity: 1;
}

.gallery-nav-left {
    left: 5px;
}

.gallery-nav-right {
    right: 5px;
}

.gallery-nav i {
    color: #8b7355;
    font-size: 0.9rem;
}

.day-title-section {
    padding: 0;
}

.day-title-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2d2926;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.day-subtitle {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.day-date {
    color: #8b7355;
    font-size: 0.95rem;
}

.day-description-inline {
    color: #5a5550;
    line-height: 1.7;
    margin-top: 10px;
    font-size: 0.95rem;
    max-width: 90%;
}

.day-toggle {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-toggle-btn:hover {
    background: #f0ede8;
}

.day-toggle-btn i {
    color: #8b7355;
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.day-item.expanded .day-toggle-btn i {
    transform: rotate(45deg);
}

.day-content {
    display: none;
    padding: 20px 0 0 210px;
    animation: slideDown 0.3s ease;
}

.day-item.expanded .day-content {
    display: block;
}

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

.day-description {
    color: #5a5550;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.day-activities {
    background: transparent;
    padding: 10px 0 20px 0;
    border-radius: 0;
    border: none;
}

.day-activities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.day-activities li {
    color: #5a5550;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.day-activities li i {
    color: #c9a96e;
    margin-top: 3px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .day-header {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    
    .day-image-thumb {
        width: 100px;
        height: 80px;
        border-radius: 0;
    }
    
    .day-title-section h3 {
        font-size: 1.4rem;
    }
    
    .day-content {
        padding: 15px 0 0 0;
    }
    
    .day-activities ul {
        grid-template-columns: 1fr;
    }
}

/* Experiences Grid */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.experience-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.experience-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.experience-content {
    padding: 16px;
}

.experience-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.experience-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
}

/* Included/Not Included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.included-column h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.included-column h3 i {
    font-size: 1.5rem;
}

.included-column h3 i.fa-check-circle {
    color: #4caf50;
}

.included-column h3 i.fa-times-circle {
    color: #f44336;
}

.included-column ul {
    list-style: none;
    padding: 0;
}

.included-column li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-medium);
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.included-column li:last-child {
    border-bottom: none;
}

.included-column li i {
    font-size: 0.9rem;
}

/* Sidebar */
.tour-sidebar {
    position: relative;
}

.booking-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.booking-card.sticky {
    position: sticky;
    top: 100px;
}

.price-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
}

.price-per {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
}

.booking-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-book, .btn-contact {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-book {
    background: linear-gradient(135deg, var(--luxury-gold), var(--primary-color));
    color: white;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-contact {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-contact:hover {
    background: var(--primary-color);
    color: white;
}

.booking-info {
    padding: 25px 30px;
    background: #f8f6f3;
    border-top: 1px solid #e0e0e0;
}

.info-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

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

/* Dates & Prices Section */
.tour-dates-prices {
    padding: 30px 0;
}

.dates-prices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.price-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2d2926;
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.price-display .currency {
    font-size: 1.5rem;
    color: #c9a96e;
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 300;
    color: #2d2926;
    font-family: 'Cormorant Garamond', serif;
}

.price-display .per {
    font-size: 1rem;
    color: #5a5550;
}

.price-features {
    list-style: none;
    padding: 0;
}

.price-features li {
    padding: 10px 0;
    color: #5a5550;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: #c9a96e;
}

.availability-calendar {
    background: #fdfbf8;
    border-radius: 12px;
    padding: 30px;
}

.availability-calendar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2d2926;
    margin-bottom: 15px;
}

.season-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.season-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.season-item i {
    font-size: 1.5rem;
    color: #c9a96e;
}

.season-item strong {
    color: #2d2926;
    font-weight: 600;
}

.season-item span {
    color: #5a5550;
    margin-left: auto;
}

/* Journey Details Section */
.tour-journey-details {
    padding: 30px 0;
    background: #f8f6f3;
}

.journey-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.detail-card i {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 15px;
}

.detail-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #2d2926;
    margin-bottom: 10px;
}

.detail-card p {
    color: #5a5550;
    margin: 0;
}

.important-notes {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.important-notes h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2d2926;
    margin-bottom: 20px;
}

.important-notes ul {
    list-style: none;
    padding: 0;
}

.important-notes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #5a5550;
}

.important-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .tour-nav-left {
        display: none;
    }
    
    .tour-tabs {
        width: 100%;
        overflow-x: auto;
        gap: 1rem;
        padding: 10px 0;
    }
    
    .tour-tab {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .dates-prices-content {
        grid-template-columns: 1fr;
    }
    
    .journey-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .tour-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-card.sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 400px;
        margin-top: 70px;
    }
    
    .tour-hero h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .tour-nav-section {
        top: 70px;
    }
    
    .tour-nav-container {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    
    .back-link {
        align-self: flex-start;
        justify-self: auto;
    }
    
    .tour-tabs {
        width: 100%;
        justify-content: space-around;
        border-top: 1px solid #e0e0e0;
        padding-top: 15px;
    }
    
    .tour-tab {
        padding: 15px 10px;
        font-size: 0.8rem;
    }
    
    .btn-book-header {
        width: 100%;
    }
    
    .breadcrumb-container {
        padding: 15px;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
    }
    
    .tour-section h2 {
        font-size: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accommodation-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-map {
        height: 350px;
    }
    
    .itinerary-timeline {
        padding-left: 30px;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .day-title-section h3 {
        font-size: 1.3rem;
    }
    
    .tour-detail-container {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .tour-hero-content {
        padding: 0 15px;
    }
    
    .tour-nav-container {
        padding: 15px;
    }
    
    .breadcrumb-container {
        padding: 15px;
    }
}

/* Accommodation Section */
.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #5a5550;
    margin-bottom: 12px;
    font-weight: 400;
}

.tour-accommodation {
    padding: 30px 0;
}

/* Tour Details Section with Tabs */
.tour-details-combined {
    padding: 30px 0;
}

.tour-details-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.detail-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8b7355;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-tab:hover {
    color: var(--primary-color);
}

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

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

.tour-details-content {
    margin-top: 30px;
}

.detail-tab-content {
    display: none;
}

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

.detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.detail-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.detail-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-card:hover .detail-card-image img {
    transform: scale(1.05);
}

.detail-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-card-content {
    padding: 18px;
}

.detail-card-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.detail-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5a5550;
    margin: 0;
}

/* Transportation Section with Selectable Options */
.tour-transportation {
    padding: 30px 0;
}

.tour-transportation h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.transport-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.transport-options-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.transport-option {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.transport-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.transport-option.selected {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.transport-card-horizontal {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.transport-image-half {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.transport-image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.transport-option:hover .transport-image-half img {
    transform: scale(1.05);
}

.transport-content-half {
    width: 50%;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.transport-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transport-content {
    padding: 18px;
}

.transport-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.transport-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5a5550;
    margin: 0;
}

.transport-select {
    position: absolute;
    top: 15px;
    right: 15px;
}

.transport-select .select-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.transport-select .select-circle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.transport-select .select-circle i {
    color: white;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transport-select .select-circle.active i {
    opacity: 1;
}

/* Meals Section */
.tour-meals {
    padding: 30px 0;
}

.tour-meals h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meals-tabs {
    display: inline-flex;
    gap: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.meal-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8b7355;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.meal-tab:hover {
    color: var(--primary-color);
}

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

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

.meals-tab-content {
    margin-top: 0;
}

.meal-day-content {
    display: none;
}

.meal-day-content.active {
    display: block;
}

.meal-day-route {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5a5550;
    margin-bottom: 12px;
    margin-top: 0;
    padding-top: 5px;
}

.meal-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meal-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.meal-card:hover:not(.included) {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.meal-card.selected {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.meal-card.included {
    cursor: default;
    opacity: 0.95;
}

.meal-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.meal-image img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    margin: -5%;
    transition: transform 0.3s ease;
}

.meal-card:hover:not(.included) .meal-image img {
    transform: scale(1.05);
}

.meal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4caf50;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meal-badge.price {
    background: var(--primary-color);
}

.meal-content {
    padding: 10px 12px;
}

.meal-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.meal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #5a5550;
    margin: 0;
}

.meal-select {
    position: absolute;
    top: 15px;
    right: 15px;
}

.meal-select .select-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.meal-select .select-circle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.meal-select .select-circle i {
    color: white;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meal-select .select-circle.active i {
    opacity: 1;
}

/* Extra Activities Section */
.tour-activities {
    padding: 30px 0;
}

.tour-activities h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.activities-tabs {
    display: inline-flex;
    gap: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.activity-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8b7355;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.activity-tab:hover {
    color: var(--primary-color);
}

.activity-tab.active {
    color: var(--primary-color);
    position: relative;
}

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

.activities-tab-content {
    margin-top: 0;
}

.activity-day-content {
    display: none;
}

.activity-day-content.active {
    display: block;
}

.activity-day-route {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5a5550;
    margin-bottom: 15px;
    margin-top: 0;
    padding-top: 5px;
}

.activity-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.activity-card.selected {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.activity-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-badge.price {
    background: var(--primary-color);
    color: white;
}

.activity-content {
    padding: 12px;
}

.activity-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.activity-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #5a5550;
    margin: 0 0 10px 0;
}

.activity-details {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.activity-details span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8b7355;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-details i {
    font-size: 0.7rem;
}

.activity-select {
    position: absolute;
    top: 15px;
    right: 15px;
}

.activity-select .select-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.activity-select .select-circle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.activity-select .select-circle i {
    color: white;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-select .select-circle.active i {
    opacity: 1;
}

.transport-card {
    padding: 12px;
    background: white;
    border-radius: 0 0 8px 8px;
}

.transport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.transport-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.transport-icon i {
    color: white;
    font-size: 1.2rem;
}

.transport-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.transport-content-half h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.transport-content-half .transport-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #5a5550;
    margin: 0;
    flex-grow: 1;
}

.transport-content-half .transport-select {
    position: absolute;
    top: 10px;
    right: 10px;
}

.transport-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #5a5550;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.transport-features li i {
    color: var(--primary-color);
    font-size: 0.6rem;
}

.transport-price {
    margin-top: 10px;
}

.transport-price .price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    background: #e8f5e9;
    color: #2e7d32;
}

.transport-price .price-label.upgrade {
    background: #fff3e0;
    color: #e65100;
}

.transport-price .price-label.discount {
    background: #e3f2fd;
    color: #1565c0;
}

.transport-card ul {
    list-style: none;
    padding: 0;
}

.transport-card li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a5550;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.transport-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Meals Grid */
.meals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.meal-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.meal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.meal-icon {
    width: 40px;
    height: 40px;
    background: #f8f6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.meal-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.meal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #5a5550;
    margin: 0;
}

/* Experience Cards Grid - matching accommodation */
#tourExperiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.experience-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.experience-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.experience-content {
    padding: 12px;
}

.experience-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.experience-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #5a5550;
}

/* Accommodation Cards Grid - EXACT same as Experience Cards */
.accommodation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.accommodation-option {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.accommodation-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.option-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accommodation-option:hover .option-image img {
    transform: scale(1.05);
}

.option-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-content {
    padding: 12px;
}

.option-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.option-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #5a5550;
    margin: 0;
}

.option-select {
    position: absolute;
    top: 15px;
    right: 15px;
}

.select-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.select-circle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.select-circle i {
    color: white;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.select-circle.active i {
    opacity: 1;
}

/* Amenities Section */
.tour-amenities {
    padding: 30px 0;
}

.amenities-content {
    margin-top: 20px;
}

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

.amenity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.amenity-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.05);
}

.amenity-content {
    padding: 15px;
}

.amenity-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.amenity-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5a5550;
}

.tour-accommodation .section-title-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 20px !important;
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
}

.section-title-row p {
    display: inline-block !important;
    opacity: 1 !important;
}

.section-title-row h2 {
    margin: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.section-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    color: #5a5550 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    display: inline-block !important;
    visibility: visible !important;
}

.accommodation-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 0 30px 0;
    padding-bottom: 0;
    border: none !important;
    border-bottom: none !important;
}

.accommodation-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.accommodation-tab {
background: none;
border: none;
padding: 10px 20px;
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
font-weight: 500;
color: #8b7355;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
margin-right: 10px;
}

.accommodation-tab:hover {
color: var(--primary-color);
}

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

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

.accommodation-tab-content {
margin-top: 30px;
}

.location-section {
    margin-bottom: 0;
}

.night-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #f8f6f3;
    border: 1px solid #c9a96e;
    border-radius: 25px;
    margin-bottom: 20px;
}

.night-indicator i {
    color: #c9a96e;
    font-size: 0.9rem;
}

.night-indicator span {
    color: #8b7355;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accommodation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: space-between;
    max-width: 100%;
}

.accommodation-option {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accommodation-option:hover {
    border-color: #c9a96e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.2);
}

.accommodation-option.selected {
    border-color: #c9a96e;
    background: #fdfbf8;
}

.option-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.option-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #8b7355;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.option-content {
    padding: 20px 15px;
}

.option-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #2d2926;
    margin: 0 0 10px 0;
}

.option-description {
    color: #5a5550;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.option-select {
    position: absolute;
    top: 15px;
    right: 15px;
}

.select-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.select-circle i {
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.select-circle.active {
    background: #c9a96e;
    border-color: #c9a96e;
}

.select-circle.active i {
    opacity: 1;
}

@media (max-width: 1400px) {
    .accommodation-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .option-content {
        padding: 15px 12px;
    }
    
    .option-content h4 {
        font-size: 1.1rem;
    }
    
    .option-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .accommodation-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .option-content {
        padding: 20px 15px;
    }
    
    .option-content h4 {
        font-size: 1.2rem;
    }
    
    .option-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .accommodation-options {
        grid-template-columns: 1fr;
    }
    
    .section-title-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}

.accommodation-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.accommodation-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accommodation-features i {
    color: #4caf50;
    font-size: 0.9rem;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.accommodation-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accommodation-header {
    margin-bottom: 15px;
}

.accommodation-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.accommodation-type {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.accommodation-nights {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.accommodation-nights i {
    color: var(--primary-color);
}

.accommodation-features i {
    color: #4caf50;
    font-size: 0.9rem;
}

/* Transportation Section */
.transportation-details {
    background: #f8f6f3;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

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

.transportation-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.transportation-list li:last-child {
    border-bottom: none;
}

.transportation-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Sub-tabs styling */
.sub-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 0;
}

.sub-tab {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    background: none;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.sub-tab:hover {
    color: var(--primary-color);
}

.sub-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Tab panes */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Dining Section */
.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dining-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.dining-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.dining-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dining-content {
    padding: 16px;
}

.dining-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.dining-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
}

/* Tour Summary Section */
.tour-summary {
    padding: 60px 0;
}

.summary-box {
    width: 100%;
    margin: 0;
    background: #fdfcfa;
    border: 2px solid #c9a96e;
    border-radius: 0;
    padding: 50px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.summary-ornament {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fdfcfa;
    padding: 0 30px;
}

.ornament-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #c9a96e;
    border-radius: 50%;
    background: #fdfcfa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #2d2926;
    text-align: center;
    margin: 0 0 40px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 35px;
}

.summary-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #5a5550;
    margin-bottom: 3px;
}

.summary-item .bullet {
    color: #2d2926;
    font-size: 1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

/* Sophisticated selection styling */
.selection-inline {
    color: #c9a96e;
    font-style: italic;
    font-size: 0.88rem;
    margin-left: 5px;
}

.selection-list {
    color: #c9a96e;
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 2px;
}

.selection-list div {
    padding: 1px 0;
}

.selection-details {
    margin-left: 0;
    margin-top: -5px;
    margin-bottom: 8px;
    padding-left: 0;
    color: #c9a96e;
    font-style: italic;
    font-size: 0.8rem;
}

.selection-details .sub-item {
    padding: 1px 0 1px 0;
    line-height: 1.3;
    text-align: left;
}

.summary-note {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #8b7355;
    font-style: italic;
    margin: 0;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive for Tour Summary */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .summary-box {
        padding: 30px 20px;
    }
    
    .summary-box h2 {
        font-size: 1.8rem;
    }
}
