/* Tour Detail Page Styles */
/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Styles */
.testimonials {
    background-color: var(--light);
    padding: 5rem 0;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Related Articles */
.related-articles {
    padding: 5rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
}

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.btn-text {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 6px;
    letter-spacing: 0.025em;
}

.btn-text:hover {
    gap: 0.8rem;
    color: var(--secondary);
    transform: translateX(4px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}
.tour-hero {
    position: relative;
    height: 75vh;
    color: #fff;
    margin-bottom: 2rem;
}

.tour-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.tour-hero-content {
    padding-top: 220px;
    max-width: 900px;
}

.tour-breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.tour-breadcrumbs a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.tour-breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.tour-breadcrumbs span {
    opacity: 0.7;
}

.tour-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-meta i {
    font-size: 1.2rem;
    color: var(--accent);
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s, background 0.3s;
}

.highlight:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}

.highlight i {
    color: var(--accent);
    font-size: 1.1rem;
}

.tour-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.tour-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tour-section {
    margin-bottom: 4rem;
}

.tour-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--primary);
}

.tour-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.tour-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--gray);
}

.itinerary-day {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s;
}

.itinerary-day:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.day-header {
    padding: 1.5rem;
    background: var(--light);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.day-header:hover {
    background: #f0ece5;
}

.day-number {
    font-weight: 600;
    margin-right: 1rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.day-header h3 {
    flex-grow: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.day-toggle {
    background: rgba(201, 168, 118, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    color: var(--secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.day-toggle:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 118, 0.3);
}

.day-header:hover .day-toggle {
    border-color: var(--secondary);
}

.day-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: white;
}

.day-content.active {
    padding: 1.5rem;
    max-height: 600px;
}

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

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.included-list i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.3rem;
}

.accommodation, .meals {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.accommodation h4, .meals h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.accommodation p, .meals p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Sidebar Styles */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.sidebar-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.sidebar-box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.price-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #b89a67 100%);
    color: var(--white);
    text-align: center;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.25);
    letter-spacing: 0.025em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b89a67 0%, #a08756 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.35);
}

.sidebar-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tour-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tour-sidebar {
        position: static;
    }
    
    .tour-hero-content {
        padding-top: 180px;
    }
    
    .tour-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 60vh;
    }
    
    .tour-hero-content {
        padding-top: 150px;
    }
    
    .tour-hero h1 {
        font-size: 2.5rem;
    }
    
    .tour-meta {
        gap: 1.5rem;
        font-size: 1rem;
    }
    
    .tour-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .tour-hero {
        height: 50vh;
    }
    
    .tour-hero-content {
        padding-top: 120px;
    }
    
    .tour-hero h1 {
        font-size: 2rem;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight {
        padding: 0.5rem 1rem;
    }
    
    .tour-section h2 {
        font-size: 1.6rem;
    }
    
    .day-header h3 {
        font-size: 1.1rem;
    }
}