/* TOUR DETAILED SECTION */
.tour-detailed-section {
    background: linear-gradient(135deg, #fefaf5, #fdf5ed);
}

.tour-detailed-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 2rem 4rem;
}

/* HERO BANNER */
.tour-hero-banner {
    position: relative;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/2505914/pexels-photo-2505914.jpeg?auto=compress&cs=tinysrgb&w=1600&h=700&fit=crop');
    background-size: cover;
    background-position: center;
}

.tour-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.tour-hero-info {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.tour-badge {
    display: inline-block;
    background: #e67e22;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.tour-hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.icon {
    fill: #f7b05e;
}

.tour-hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #e67e22;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230,126,34,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-2px);
}

/* TRIP SUMMARY CARD */
.trip-summary-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #e67e22;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.trip-summary-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.trip-summary-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7f8c6d;
}

/* 2 COLUMNS LAYOUT */
.two-columns-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* SECTION TITLE */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.title-icon {
    width: 28px;
    height: 28px;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e2f;
}

/* LEFT COLUMN - ITINERARY */
.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.itinerary-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #f0e4d4;
    transition: all 0.3s ease;
}

.itinerary-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.day-number {
    display: inline-block;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.itinerary-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.itinerary-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c6d;
    margin-bottom: 0.8rem;
}

.included-tag {
    background: #fef8f0;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #a08c74;
    line-height: 1.5;
}

.book-now-btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.book-now-btn:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230,126,34,0.2);
}

/* RIGHT COLUMN MODULES */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* CAROUSEL MODULE */
.carousel-module {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.carousel-container {
    position: relative;
}

.carousel-slides {
    position: relative;
    height: 320px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #e67e22;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e67e22;
    width: 25px;
    border-radius: 10px;
}

/* INCLUSIONS MODULE */
.inclusions-module {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #f0e4d4;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0e4d4;
}

.module-icon {
    width: 24px;
    height: 24px;
}

.module-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e2f;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #7f8c6d;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.inclusions-list li .check {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #e67e22;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusions-list li .check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
}

/* FAQ MODULE */
.faq-module {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #f0e4d4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid #f0e4d4;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e2f;
}

.q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #fef2e6;
    color: #e67e22;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question span:first-of-type {
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #e67e22;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1rem 2rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #7f8c6d;
}

.faq-item.active .faq-answer {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .two-columns-layout {
        gap: 2rem;
    }
    
    .tour-hero-info h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .two-columns-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-slides {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .tour-detailed-container {
        padding: 20px 1rem 3rem;
    }
    
    .tour-hero-banner {
        height: 500px;
    }
    
    .tour-hero-info h1 {
        font-size: 1.6rem;
    }
    
    .tour-hero-meta {
        gap: 0.8rem;
    }
    
    .meta-item {
        font-size: 0.7rem;
    }
    
    .tour-hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 250px;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .carousel-slides {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .tour-hero-banner {
        height: 480px;
    }
    
    .tour-hero-info h1 {
        font-size: 1.3rem;
    }
    
    .tour-hero-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .itinerary-item {
        padding: 1rem;
    }
    
    .inclusions-module, .faq-module {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 0.8rem;
    }
    
    .faq-answer {
        padding-left: 1.5rem;
    }
}



/* Trip Details Grid */
.trip-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f0e4d4;
}

.trip-detail {
    font-size: 0.8rem;
    color: #7f8c6d;
    line-height: 1.5;
}

.detail-label {
    font-weight: 700;
    color: #2c3e2f;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .trip-details-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}