
/* Package Detail Page Styles (Morza Style) */
.package-detail-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.package-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .package-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.info-box {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-box.included {
    background-color: #2dbabb; /* Teal like Morza */
}

.info-box.excluded {
    background-color: #0097a7; /* Darker Cyan */
}

.info-box-header {
    background-color: rgba(0,0,0,0.1);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-content {
    padding: 20px;
    color: white;
}

.info-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-box-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-box.excluded .info-box-list li:before {
    content: '•'; /* Or specific icon for excluded */
    font-weight: bold;
}

/* Main Content Styles */
.package-hero-header {
    background-color: #2dbabb;
    color: white;
    padding: 15px 25px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.itinerary-item {
    margin-bottom: 30px;
}

.itinerary-day-header {
    font-size: 1rem;
    font-weight: 800;
    color: #444;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-left: 4px solid #f9a825; /* Yellow accent */
    padding-left: 15px;
}

.itinerary-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.itinerary-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-item {
    height: auto;
    min-height: 120px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}
