/* ===================================================================
   TOUR DETAILS PAGE STYLES - DEVOTA TOURS
   Custom styles for individual tour details pages
   ================================================================= */

/* Hero Section */
.tour-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.8) 0%, rgba(162, 59, 114, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
}

.hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Main Content */
.tour-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.tour-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Welcome Section */
.welcome-section {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.welcome-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.welcome-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white !important;
    text-align: center;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* About Section - Enhanced styles applied above */

/* Highlights Section */
.highlights-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fffbe7 0%, #f8fafb 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Highlight icon styles consolidated in the new section */

.highlight-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* Schedule Section - Enhanced styles applied above */

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Consolidated Gallery Image Styles */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Image Lightbox Styles */
.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Destinations Section */
.destinations-section {
    padding: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.destination-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.destination-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--primary-color);
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Info Section */
.info-section {
    padding: 3rem;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

/* Info item icon styles consolidated in the new section */

.info-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 1rem;
}

/* Sidebar */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.booking-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tour-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    color: white;
    font-size: 0.9rem;
}

.booking-content {
    padding: 2rem;
}

.price-info {
    text-align: center;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.book-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

/* Quick Info Card */
.quick-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quick-info-list {
    list-style: none;
    padding: 0;
}

.quick-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

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

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

/* Related Tours Card */
.related-tours-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-tours-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-tours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
}

.related-tour-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 100%;
}

.related-tour-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.tour-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
}

.tour-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}

.tour-info .tour-duration {
    font-size: 0.9rem;
    color: #666;
    background: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #555;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

/* Enhanced Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

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

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#lightbox-caption {
    margin-top: 20px;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 80%;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Gallery Image Enhancements */
.gallery-image {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tour-gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.tour-gallery-row img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-gallery-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tour-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-sidebar {
        order: -1;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .welcome-card {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tour-main {
        padding: 2rem 0;
    }
    
    .tour-content {
        border-radius: 15px;
    }
    
    .welcome-section,
    .about-section,
    .highlights-section,
    .schedule-section,
    .gallery-section,
    .destinations-section,
    .cta-section,
    .info-section {
        padding: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .time {
        min-width: auto;
        margin-right: 0;
    }
    
    /* Adjust hero padding for mobile navbar */
    .tour-hero {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .welcome-section,
    .about-section,
    .highlights-section,
    .schedule-section,
    .gallery-section,
    .destinations-section,
    .cta-section,
    .info-section {
        padding: 1.5rem;
    }
    
    .section-header {
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .welcome-text h2 {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-header,
    .booking-content {
        padding: 1.5rem;
    }
    
    .quick-info-card,
    .related-tours-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}

/* Legacy styles for compatibility */
.tour-details-hero {
    position: relative;
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: white;
}
.tour-details-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.tour-details-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
}
.breadcrumb-content {
    text-align: left;
}
.breadcrumb-nav {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #fff;
}
.breadcrumb-nav a {
    color: #fff;
    text-decoration: underline;
    opacity: 0.85;
}
.breadcrumb-nav span {
    color: #fff;
    opacity: 0.7;
}

.tour-details-main {
    padding: 60px 0 40px 0;
    background: var(--bg-white);
}
.tour-details-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.tour-details-content {
    flex: 1 1 0;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem;
    min-width: 0;
}
.tour-details-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-btn {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.tab-content {
    display: none;
    margin-bottom: 2rem;
}
.tab-content.active {
    display: block;
}

.tour-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.tour-intro h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.tour-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-day {
    margin-bottom: 3rem;
}
.tour-day:last-child {
    margin-bottom: 0;
}
.tour-day h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.tour-day-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}
.tour-activities {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.tour-activities li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.tour-activities li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.tour-gallery-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.tour-gallery-row img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: transform 0.2s;
}
.tour-gallery-row img:hover {
    transform: scale(1.08);
}
.tour-info {
    margin-top: 1.2rem;
    padding-left: 0;
    list-style: none;
    color: var(--text-secondary);
    font-size: 1rem;
}
.tour-info li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tour-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tour-details-sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sidebar-box {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}
.tour-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.2rem;
}
.btn-enquire {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 1rem;
}
.btn-enquire:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}
.recent-tours-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.recent-tours-list li {
    margin-bottom: 0.7rem;
}
.recent-tours-list a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.recent-tours-list a:hover {
    color: var(--secondary-color);
}
.sidebar-box iframe {
    border-radius: 10px;
    width: 100%;
    min-height: 180px;
    border: none;
}

.map-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}
.map-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.map-info .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
}
.map-info .btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}
.map-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232E86AB"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}
.map-content {
    position: relative;
    z-index: 1;
    max-width: 400px;
}
.map-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.map-content h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.map-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.route-highlights {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}
.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}
.highlight:last-child {
    margin-bottom: 0;
}
.highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.highlight div h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.highlight div p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Gallery Image Lightbox Styles - Legacy */
.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Gallery Image Override for Mobile */
@media (max-width: 768px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-item img {
        height: 180px;
    }
}

/* Mobile Lightbox Enhancements */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 90%;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    #lightbox-caption {
        font-size: 0.95rem;
        max-width: 90%;
        padding: 8px 15px;
        margin-top: 15px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    #lightbox-image {
        max-height: 70vh;
        border-radius: 8px;
    }
    
    /* Enhanced gallery grid for mobile */
    .tour-gallery-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .tour-gallery-row img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    #lightbox-caption {
        font-size: 0.9rem;
        max-width: 95%;
        padding: 6px 12px;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
        padding: 8px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    #lightbox-image {
        max-height: 65vh;
    }
    
    /* Single column gallery for small screens */
    .tour-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .tour-gallery-row img {
        height: 100px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .lightbox-nav {
        min-height: 44px;
        min-width: 44px;
    }
    
    .lightbox-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .gallery-image:hover {
        transform: none;
    }
    
    .tour-gallery-row img:hover {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .tour-details-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .tour-details-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 2rem;
    }
    .sidebar-box {
        flex: 1;
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .tour-details-content {
        padding: 1.2rem 0.5rem;
    }
    .tour-details-sidebar {
        flex-direction: column;
        gap: 1rem;
    }
    .sidebar-box {
        margin-bottom: 1rem;
    }
    .tour-details-hero .container {
        padding-bottom: 1.5rem;
    }
    .tour-intro {
        padding: 1.5rem;
    }
    .tour-intro h3 {
        font-size: 1.3rem;
    }
    .tour-intro p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .tour-details-content {
        padding: 1rem 0.5rem;
    }
    .sidebar-box {
        padding: 1.5rem 1rem;
    }
    .tour-details-hero {
        min-height: 30vh;
    }
    .tour-gallery-row img {
        width: 100px;
        height: 70px;
    }
    
    /* Adjust hero padding for small mobile navbar */
    .tour-hero {
        padding-top: 65px;
    }
} 

/* Mobile Responsive Improvements for Tour Pages */

/* Tablet and smaller desktop improvements */
@media (max-width: 1200px) {
    .tour-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-content {
        gap: 2rem;
    }
}

/* Large tablet improvements */
@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .welcome-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile improvements */
@media (max-width: 768px) {
    /* Container and layout improvements */
    .container {
        padding: 0 1rem;
    }
    
    .tour-main {
        padding: 1.5rem 0;
    }
    
    .tour-content {
        border-radius: 15px;
        margin: 0 0.5rem;
    }
    
    /* Hero section improvements */
    .tour-hero {
        padding-top: 70px;
        min-height: 50vh;
    }
    
    .hero-text {
        padding: 1.5rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-breadcrumb {
        font-size: 0.9rem;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Section improvements */
    .welcome-section,
    .about-section,
    .highlights-section,
    .schedule-section,
    .gallery-section,
    .destinations-section,
    .cta-section,
    .info-section {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Welcome section improvements */
    .welcome-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .welcome-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .welcome-icon {
        font-size: 2.5rem;
    }
    
    /* About section improvements */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Highlights improvements */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .highlight-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    /* Schedule improvements */
    .schedule-timeline {
        padding: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .time {
        min-width: auto;
        margin-right: 0;
        font-size: 1rem;
    }
    
    .activity {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    /* Destinations improvements */
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .destination-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* CTA improvements */
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center !important;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center !important;
    }
    
    .cta-card {
        text-align: center !important;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        justify-content: center !important;
        width: fit-content !important;
    }
    
    /* Info improvements */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .info-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .info-item i {
        font-size: 1.8rem;
    }
    
    /* Sidebar improvements */
    .tour-sidebar {
        margin: 0 0.5rem;
    }
    
    .booking-card,
    .quick-info-card,
    .related-tours-card,
    .contact-info-card {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .booking-header,
    .booking-content {
        padding: 1.5rem;
    }
    
    .booking-header h3 {
        font-size: 1.3rem;
    }
    
    .tour-duration {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .book-button {
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px;
    }
    
    .quick-info-card h3,
    .related-tours-card h3,
    .contact-info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .quick-info-list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .related-tour-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .tour-info h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .contact-method {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }
    
    .contact-button {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* Small mobile improvements */
@media (max-width: 480px) {
    /* Container improvements */
    .container {
        padding: 0 0.8rem;
    }
    
    .tour-content {
        margin: 0 0.3rem;
    }
    
    /* Hero improvements */
    .tour-hero {
        padding-top: 65px;
        min-height: 45vh;
    }
    
    .hero-text {
        padding: 1rem 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-breadcrumb {
        font-size: 0.8rem;
        gap: 0.2rem;
    }
    
    /* Section improvements */
    .welcome-section,
    .about-section,
    .highlights-section,
    .schedule-section,
    .gallery-section,
    .destinations-section,
    .cta-section,
    .info-section {
        padding: 1.5rem 1rem;
    }
    
    .section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Welcome improvements */
    .welcome-text h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .welcome-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .welcome-icon {
        font-size: 2rem;
    }
    
    /* About improvements */
    .about-image img {
        height: 200px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Highlights improvements */
    .highlight-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .highlight-icon {
        font-size: 1.8rem;
    }
    
    /* Schedule improvements */
    .schedule-timeline {
        padding: 1.2rem;
    }
    
    .timeline-item {
        padding: 0.8rem 0;
        gap: 0.4rem;
    }
    
    .time {
        font-size: 0.95rem;
    }
    
    .activity {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    /* Destinations improvements */
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .destination-item {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    /* CTA improvements */
    .cta-content h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center !important;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center !important;
    }
    
    .cta-card {
        text-align: center !important;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        justify-content: center !important;
        width: fit-content !important;
    }
    
    /* Info improvements */
    .info-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .info-item i {
        font-size: 1.6rem;
    }
    
    /* Sidebar improvements */
    .tour-sidebar {
        margin: 0 0.3rem;
    }
    
    .booking-header,
    .booking-content {
        padding: 1.2rem;
    }
    
    .booking-header h3 {
        font-size: 1.2rem;
    }
    
    .tour-duration {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .book-button {
        padding: 0.8rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .quick-info-card,
    .related-tours-card,
    .contact-info-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .quick-info-card h3,
    .related-tours-card h3,
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .quick-info-list li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .related-tour-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .tour-info h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .contact-method {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .contact-button {
        padding: 0.8rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
}

/* Touch target improvements for mobile */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    .btn,
    button,
    .book-button,
    .cta-button,
    .contact-button,
    .nav-link,
    .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve button spacing */
    .cta-button,
    .book-button,
    .contact-button {
        margin: 0.5rem 0;
    }
    
    /* Improve link spacing */
    .hero-breadcrumb a,
    .destination-item,
    .related-tour-item {
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .tour-hero {
        min-height: 60vh;
        padding-top: 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tour-content,
    .booking-card,
    .quick-info-card,
    .related-tours-card,
    .contact-info-card {
        border: 2px solid currentColor;
    }
    
    .btn,
    .book-button,
    .cta-button,
    .contact-button {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .tour-content,
    .booking-card,
    .quick-info-card,
    .related-tours-card,
    .contact-info-card,
    .highlight-item,
    .info-item,
    .destination-item,
    .gallery-item {
        transition: none !important;
    }
    
    .highlight-item:hover,
    .info-item:hover,
    .destination-item:hover,
    .gallery-item:hover {
        transform: none !important;
    }
}

/* Focus improvements for accessibility */
@media (max-width: 768px) {
    .btn:focus,
    .book-button:focus,
    .cta-button:focus,
    .contact-button:focus,
    .nav-link:focus,
    .gallery-item:focus,
    .destination-item:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-radius: 8px;
    }
} 

/* Icon and Touch Target Improvements */

/* Highlight Icons */
.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(162, 59, 114, 0.1) 100%);
    transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-icon:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.2) 0%, rgba(162, 59, 114, 0.2) 100%);
}

/* Info Icons */
.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(162, 59, 114, 0.1) 100%);
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.2) 0%, rgba(162, 59, 114, 0.2) 100%);
}

/* Quick Info Icons */
.quick-info-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    min-width: 20px;
    display: inline-block;
    text-align: center;
}

/* Contact Method Icons */
.contact-method i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    min-width: 24px;
    display: inline-block;
    text-align: center;
}

/* CTA Icon */
.cta-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Welcome Icon */
.welcome-icon {
    font-size: 3rem;
    opacity: 0.9;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.welcome-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Touch Targets */
.btn,
button,
.book-button,
.cta-button,
.contact-button,
.gallery-item,
.destination-item,
.related-tour-item {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button Hover Effects */
.btn:hover,
button:hover,
.book-button:hover,
.cta-button:hover,
.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Link Hover Effects */
.gallery-item:hover,
.destination-item:hover,
.related-tour-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Focus States for Accessibility */
.btn:focus,
button:focus,
.book-button:focus,
.cta-button:focus,
.contact-button:focus,
.gallery-item:focus,
.destination-item:focus,
.related-tour-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Mobile Icon Adjustments */
@media (max-width: 768px) {
    .highlight-icon {
        font-size: 2rem;
        min-width: 50px;
        min-height: 50px;
    }
    
    .info-item i {
        font-size: 1.8rem;
        min-width: 45px;
        min-height: 45px;
    }
    
    .cta-icon,
    .welcome-icon {
        font-size: 2.5rem;
        min-width: 60px;
        min-height: 60px;
    }
    
    .quick-info-list i {
        font-size: 1rem;
        min-width: 18px;
    }
    
    .contact-method i {
        font-size: 1.1rem;
        min-width: 22px;
    }
}

@media (max-width: 480px) {
    .highlight-icon {
        font-size: 1.8rem;
        min-width: 45px;
        min-height: 45px;
    }
    
    .info-item i {
        font-size: 1.6rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .cta-icon,
    .welcome-icon {
        font-size: 2rem;
        min-width: 50px;
        min-height: 50px;
    }
    
    .quick-info-list i {
        font-size: 0.9rem;
        min-width: 16px;
    }
    
    .contact-method i {
        font-size: 1rem;
        min-width: 20px;
    }
} 

/* UI/UX Improvements for Tour Sections */

/* About Section Enhancements */
.about-section {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

/* Highlights Section Enhancements */
.highlights-section {
    padding: 3rem;
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    min-height: 200px;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(162, 59, 114, 0.1) 100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.2) 0%, rgba(162, 59, 114, 0.2) 100%);
}

.highlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Schedule Section Enhancements */
.schedule-section {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.schedule-timeline {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Timeline vertical line removed */

.timeline-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    position: relative;
    padding-left: 4rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item:hover {
    background: rgba(46, 134, 171, 0.05);
    border-radius: 10px;
    margin: 0 -1rem;
    padding-left: calc(4rem + 1rem);
    padding-right: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 5px var(--primary-color);
}

.time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 120px;
    margin-right: 2rem;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(162, 59, 114, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-align: center;
    flex-shrink: 0;
}

.activity {
    font-size: 1.1rem;
    color: #555;
    flex: 1;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile Responsive Improvements */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .highlight-item {
        min-height: 180px;
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .highlight-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-section,
    .highlights-section,
    .schedule-section {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        min-height: auto;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .highlight-content {
        flex: 1;
        gap: 0.8rem;
        text-align: center;
        width: 100%;
    }
    
    .highlight-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .highlight-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .schedule-timeline {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    /* Timeline vertical line removed */
    
    .timeline-item {
        padding-left: 3.5rem;
        padding-bottom: 1.2rem;
        padding-top: 1.2rem;
    }
    
    .timeline-item::before {
        left: 15px;
        top: 1.2rem;
        width: 18px;
        height: 18px;
    }
    
    .time {
        min-width: 100px;
        margin-right: 1rem;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .activity {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .about-section,
    .highlights-section,
    .schedule-section {
        padding: 1.5rem 1rem;
    }
    
    .about-image img {
        height: 200px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .highlight-item {
        padding: 1.2rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .highlight-content {
        text-align: center;
        width: 100%;
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .schedule-timeline {
        padding: 1.5rem 1rem;
        margin: 0 0.3rem;
    }
    
    /* Timeline vertical line removed */
    
    .timeline-item {
        padding-left: 3rem;
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
    
    .timeline-item::before {
        left: 12px;
        top: 1rem;
        width: 16px;
        height: 16px;
    }
    
    .time {
        min-width: 80px;
        margin-right: 0.8rem;
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .activity {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* White Text Elements for Tour Pages */
.hero-title,
.cta-title,
.booking-header h3,
.cta-content h2,
.cta-section h2,
.booking-card h3 {
    color: white !important;
}

/* Specific page elements that should be white */
.hero h1,
.hero h2,
.cta-section .cta-title,
.booking-section h3 {
    color: white !important;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .about-image,
    .about-image img,
    .highlight-item,
    .highlight-icon,
    .timeline-item,
    .timeline-item::before {
        transition: none !important;
        transform: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .about-section,
    .highlights-section,
    .schedule-section {
        background: white;
        border: 2px solid #000;
    }
    
    .highlight-item {
        border: 2px solid #000;
    }
    
    .schedule-timeline {
        border: 2px solid #000;
    }
    
    .timeline-item::before {
        border: 3px solid #000;
        box-shadow: 0 0 0 2px #000;
    }
}

/* Focus States */
.about-image:focus,
.highlight-item:focus,
.timeline-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Print Styles */
@media print {
    .about-section,
    .highlights-section,
    .schedule-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .highlight-item,
    .schedule-timeline {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
} 

/* Additional specific selectors for day tour pages */
.tour-hero .hero-text h1,
.welcome-section .welcome-text h2 {
    color: white !important;
}

/* Force white color for these specific elements */
.tour-hero .hero-content .hero-text h1,
.tour-main .welcome-section .welcome-card .welcome-text h2 {
    color: white !important;
}

/* Force CTA button centering in mobile */
@media (max-width: 768px) {
    .cta-button {
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        justify-content: center !important;
        width: fit-content !important;
    }
    
    .cta-card {
        text-align: center !important;
    }
    
    .cta-content {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .cta-button {
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
        justify-content: center !important;
        width: fit-content !important;
    }
    
    .cta-card {
        text-align: center !important;
    }
    
    .cta-content {
        text-align: center !important;
    }
}