/* Expedition Details Specific Styles */
.expedition-details-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.expedition-details-hero .breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 0 20px;
}

.expedition-details-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.expedition-details-hero .breadcrumb span {
    color: var(--gold);
}

.expedition-details-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: var(--cultural-font);
}

.expedition-details-hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.expedition-meta-hero {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.expedition-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.expedition-gallery {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.gallery-main {
    max-width: 1000px;
    margin: 0 auto;
}

.main-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

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

.expedition-details-content {
    padding: 60px 0;
}

.details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.details-main section {
    margin-bottom: 50px;
}

.details-main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.details-main h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--red);
}

.highlights ul {
    list-style: none;
    padding-left: 0;
}

.highlights li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.itinerary-day {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.day-header {
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.day-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.toggle-day {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.day-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.day-content.active {
    padding: 20px;
    max-height: 1000px;
}

.day-highlights ul {
    list-style: none;
    padding-left: 0;
}

.day-highlights li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.day-highlights li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.included ul, .not-included ul {
    list-style: none;
    padding-left: 0;
}

.included li, .not-included li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included i {
    color: var(--green);
}

.not-included i {
    color: #ccc;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card, .why-book-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.price-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-section .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--red);
    display: block;
}

.price-section .per-person {
    color: #666;
    font-size: 0.9rem;
}

.booking-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.detail-item i {
    color: var(--red);
    width: 20px;
}

.availability h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.date-list {
    margin-bottom: 25px;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.spots {
    color: var(--red);
    font-weight: 600;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.info-item i {
    color: var(--red);
}

.why-book-card ul {
    list-style: none;
    padding-left: 0;
}

.why-book-card li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-book-card i {
    color: var(--green);
}

.related-expeditions {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related-expeditions h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.expedition-details-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('<?php echo URL; ?>public/images/expeditions/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.expedition-details-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.expedition-details-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expedition-details-hero h1 {
        font-size: 2.2rem;
    }
    
    .expedition-meta-hero {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.2s;
}
.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }
.gallery-nav:hover { background: rgba(0,0,0,0.8); }
.gallery-thumbnails .thumbnail.active {
    outline: 2px solid var(--red);
    box-shadow: 0 0 0 2px var(--red);
}
.main-image {
    position: relative;
}

