/* Tour Page Styles - Simple & Responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Main Container */
.tour-container {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Left Column - Main Content */
.left-column {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Right Column - Sidebar */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

/* Tour Image */
.tour-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour Sections */
.tour-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.tour-section:last-child {
    border-bottom: none;
}

.tour-section p {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-section p i {
    color: #e67e22;
}

/* Tour Title and Price in Overview */
.tour-title-price {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.tour-title-price h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.tour-rating span {
    color: #666;
    font-size: 0.95rem;
}

.tour-price-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-price-inline .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e67e22;
}

.tour-price-inline .per-person {
    font-size: 1.1rem;
    color: #666;
}

.tour-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Inclusions */
.inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.inclusion-list h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.inclusion-list ul {
    list-style: none;
}

.inclusion-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.inclusion-list li i {
    color: #27ae60;
    width: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Sidebar Cards */
.booking-card,
.contact-card,
.related-tours {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Booking Card */
.booking-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
}

.big-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e67e22;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-call {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #27ae60;
    font-size: 0.9rem;
}

.feature i {
    width: 16px;
}

/* Contact Card */
.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #e67e22;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 0.85rem;
    color: #666;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #e67e22;
}

/* Related Tours */
.related-tours h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.related-tour {
    display: flex;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.related-tour img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.tour-info {
    padding: 10px 15px;
    flex: 1;
}

.tour-info h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.tour-info .price {
    color: #e67e22;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.btn-small {
    display: inline-block;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.btn-small:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tour-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    /* Mobile: Left column shows first */
    .left-column {
        order: 1;
    }
    
    /* Mobile: Right column shows second */
    .right-column {
        order: 2;
    }
    
    .tour-title-price h1 {
        font-size: 1.8rem;
    }
    
    .tour-price-inline .price {
        font-size: 1.8rem;
    }
    
    .tour-section {
        padding: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inclusions {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-card,
    .contact-card,
    .related-tours {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tour-container {
        padding: 0 5px;
    }
    
    .tour-title-price h1 {
        font-size: 1.5rem;
    }
    
    .tour-price-inline .price {
        font-size: 1.5rem;
    }
    
    .tour-section {
        padding: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .related-tour {
        flex-direction: column;
    }
    
    .related-tour img {
        width: 100%;
        height: 120px;
    }
}
