.package-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 100px;
}

.package-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.package-header h1 {
    margin: 0 0 0.75rem 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.package-header > p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.95;
}

.package-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.package-meta-item i {
    font-size: 1.2rem;
}

.package-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.package-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid #e8e8e8;
}

.package-section h2 {
    color: #333;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.package-section p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.itinerary-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.itinerary-day {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: #667eea;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #667eea;
}

.itinerary-day h3 {
    color: #667eea;
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.itinerary-day p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

.pricing-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pricing-card-header span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.pricing-card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
}

.pricing-card small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.inclusion-item, .exclusion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.inclusion-item:hover, .exclusion-item:hover {
    transform: translateX(5px);
}

.inclusion-item {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.exclusion-item {
    background: linear-gradient(135deg, #ffebee 0%, #fff5f5 100%);
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
    .package-detail-container {
        margin-top: 80px;
        padding: 1.5rem 1rem;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-header {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .package-header h1 {
        font-size: 1.6rem;
    }

    .package-header > p {
        font-size: 1rem;
    }

    .package-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .package-section {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .package-section h2 {
        font-size: 1.2rem;
    }

    .itinerary-timeline {
        padding-left: 2rem;
    }

    .pricing-card-price {
        font-size: 1.5rem;
    }
}
