/* Trip Details Page Styles */

.trip-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(13, 27, 42, 0.6), rgba(13, 27, 42, 0.8));
}

.trip-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.trip-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trip-meta span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-meta i {
    color: var(--accent-sky);
}

/* Trip Details Section */
.trip-details-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

/* Gallery */
.trip-gallery {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trip-gallery .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.section-title-custom {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.section-title-custom:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

/* Trip Overview */
.trip-overview {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trip-overview .lead {
    color: var(--dark-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Itinerary */
.trip-itinerary {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light-bg);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-sky);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-sky);
}

.accordion-body {
    padding: 25px;
    background-color: white;
    line-height: 1.8;
}

.itinerary-day {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.itinerary-time {
    background-color: var(--accent-sky);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.itinerary-activity {
    flex-grow: 1;
}

.itinerary-activity h6 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

/* Highlights */
.trip-highlights {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-sky);
    margin-left: 15px;
    width: 30px;
}

.highlight-item span {
    color: var(--dark-text);
    font-weight: 500;
}

/* Pricing Card */
.pricing-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 10;
}

.pricing-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-sky);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    color: var(--dark-text);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.pricing-value {
    color: var(--accent-sky);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-card .btn-primary {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Hotel Card */
.hotel-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotel-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-sky);
}

.hotel-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hotel-info-item i {
    color: var(--accent-sky);
    font-size: 1.2rem;
    margin-top: 3px;
}

.hotel-info-item-content h5 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.hotel-info-item-content p {
    color: var(--dark-text);
    margin-bottom: 0;
    line-height: 1.6;
}

.hotel-stars {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.hotel-feature-badge {
    background-color: rgba(98, 182, 203, 0.1);
    color: var(--primary-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card {
        position: static !important;
        margin-bottom: 30px;
    }
    
    .hotel-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .trip-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .trip-gallery .carousel-item img {
        height: 300px;
    }
    
    .section-title-custom {
        font-size: 1.5rem;
    }
    
    .trip-overview,
    .trip-itinerary,
    .trip-highlights {
        padding: 20px;
    }
}

